|
|
|
@ -383,13 +383,13 @@ struct DLL_API TestStaticClass
@@ -383,13 +383,13 @@ struct DLL_API TestStaticClass
|
|
|
|
|
{ |
|
|
|
|
static int Add(int a, int b); |
|
|
|
|
|
|
|
|
|
static int GetOneTwoThree(); |
|
|
|
|
static int GetOneTwoThree(); |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
|
|
|
|
|
static int _Mult(int a, int b); |
|
|
|
|
static int _Mult(int a, int b); |
|
|
|
|
|
|
|
|
|
static int GetFourFiveSix(); |
|
|
|
|
static int GetFourFiveSix(); |
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
TestStaticClass(); |
|
|
|
@ -416,9 +416,9 @@ int TestStaticClassDerived::Foo() { return 0; }
@@ -416,9 +416,9 @@ int TestStaticClassDerived::Foo() { return 0; }
|
|
|
|
|
class DLL_API TestNotStaticClass |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
static TestNotStaticClass StaticFunction(); |
|
|
|
|
static TestNotStaticClass StaticFunction(); |
|
|
|
|
private: |
|
|
|
|
TestNotStaticClass(); |
|
|
|
|
TestNotStaticClass(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
TestNotStaticClass::TestNotStaticClass() |
|
|
|
@ -427,7 +427,7 @@ TestNotStaticClass::TestNotStaticClass()
@@ -427,7 +427,7 @@ TestNotStaticClass::TestNotStaticClass()
|
|
|
|
|
|
|
|
|
|
TestNotStaticClass TestNotStaticClass::StaticFunction() |
|
|
|
|
{ |
|
|
|
|
return TestNotStaticClass(); |
|
|
|
|
return TestNotStaticClass(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class HasIgnoredField |
|
|
|
|