|
|
|
|
@ -178,8 +178,6 @@ public:
@@ -178,8 +178,6 @@ public:
|
|
|
|
|
FunctionTypedef functionTypedef; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
Baz::Baz() : P(5) {} |
|
|
|
|
|
|
|
|
|
struct QArrayData |
|
|
|
|
{ |
|
|
|
|
}; |
|
|
|
|
@ -234,8 +232,6 @@ private:
@@ -234,8 +232,6 @@ private:
|
|
|
|
|
Bar::Items _itemsByValue; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
Proprietor::Proprietor() : _items(Bar::Items::Item1), _itemsByValue(Bar::Items::Item1) {} |
|
|
|
|
|
|
|
|
|
class DLL_API ComplexType |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
@ -285,9 +281,6 @@ struct DLL_API TestDestructors
@@ -285,9 +281,6 @@ struct DLL_API TestDestructors
|
|
|
|
|
~TestDestructors(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
TestDestructors::TestDestructors() { Marker = 0xf00d; } |
|
|
|
|
TestDestructors::~TestDestructors() { Marker = 0xcafe; } |
|
|
|
|
|
|
|
|
|
class DLL_API TestCopyConstructorVal |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
@ -582,46 +575,32 @@ struct DLL_API MI_A0
@@ -582,46 +575,32 @@ struct DLL_API MI_A0
|
|
|
|
|
int F; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
MI_A0::MI_A0() : F(50) {} |
|
|
|
|
int MI_A0::get() { return F; }; |
|
|
|
|
|
|
|
|
|
struct DLL_API MI_A |
|
|
|
|
{ |
|
|
|
|
MI_A(); |
|
|
|
|
virtual void v(int i = 5); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
MI_A::MI_A() {} |
|
|
|
|
void MI_A::v(int i) {} |
|
|
|
|
|
|
|
|
|
struct DLL_API MI_B : public MI_A |
|
|
|
|
{ |
|
|
|
|
MI_B(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
MI_B::MI_B() {} |
|
|
|
|
|
|
|
|
|
struct DLL_API MI_C : public MI_A0, public MI_B |
|
|
|
|
{ |
|
|
|
|
MI_C(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
MI_C::MI_C() {} |
|
|
|
|
|
|
|
|
|
struct DLL_API MI_A1 |
|
|
|
|
{ |
|
|
|
|
MI_A1(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
MI_A1::MI_A1() {} |
|
|
|
|
|
|
|
|
|
struct DLL_API MI_D : public MI_A1, public MI_C |
|
|
|
|
{ |
|
|
|
|
MI_D(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
MI_D::MI_D() {} |
|
|
|
|
|
|
|
|
|
class DLL_API StructWithPrivateFields |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
@ -686,16 +665,6 @@ struct DLL_API TestPointers
@@ -686,16 +665,6 @@ struct DLL_API TestPointers
|
|
|
|
|
const char** Names; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
void TestPointers::TestDoubleCharPointers(const char** names) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void TestPointers::TestTripleCharPointers(const char*** names) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class DLL_API HasVirtualDtor1 |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
@ -1344,17 +1313,6 @@ public:
@@ -1344,17 +1313,6 @@ public:
|
|
|
|
|
void* operator[](size_t n) const; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
int TestIndexedProperties::operator[](const int& key) |
|
|
|
|
{ |
|
|
|
|
return key; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void* TestIndexedProperties::operator[](size_t n) const |
|
|
|
|
{ |
|
|
|
|
field = n; |
|
|
|
|
return &field; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
extern const ComplexArrayElement ArrayOfVariableSize[]; |
|
|
|
|
|
|
|
|
|
void useStdStringJustAsParameter(std::string s); |
|
|
|
|
|