File tree 4 files changed +43
-1
lines changed
4 files changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ class DLL_API Abstract
51
51
template <typename T>
52
52
class TemplateClass
53
53
{
54
+ public:
55
+ T getField () const ;
56
+ void setField (const T& value);
57
+ private:
54
58
union
55
59
{
56
60
int i;
@@ -59,6 +63,18 @@ class TemplateClass
59
63
T t;
60
64
};
61
65
66
+ template <typename T>
67
+ T TemplateClass<T>::getField() const
68
+ {
69
+ return t;
70
+ }
71
+
72
+ template <typename T>
73
+ void TemplateClass<T>::setField(const T& value)
74
+ {
75
+ t = value;
76
+ }
77
+
62
78
template <typename T>
63
79
class DLL_API TemplateWithIndependentFields
64
80
{
@@ -84,3 +100,6 @@ class DLL_API SecondaryBase
84
100
~SecondaryBase ();
85
101
void function ();
86
102
};
103
+
104
+ // force the symbols for the template instantiations because we do not have the auto-compilation for the generated C++ source
105
+ template class DLL_API TemplateClass<int >;
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ public void TestNonRenamedMethod()
18
18
var parent = derived . Parent ;
19
19
derived . parent ( 0 ) ;
20
20
}
21
+ using ( var derived2 = new Derived2 ( ) )
22
+ {
23
+ var template = derived2 . Template ;
24
+ template . Field = 5 ;
25
+ Assert . That ( template . Field , Is . EqualTo ( 5 ) ) ;
26
+ }
21
27
}
22
28
23
29
[ Test ]
Original file line number Diff line number Diff line change @@ -33,6 +33,14 @@ void Derived::setNestedNSComponent(OverlappingNamespace::InBaseLib c)
33
33
nestedNSComponent = c;
34
34
}
35
35
36
+ Derived2::Derived2 ()
37
+ {
38
+ }
39
+
40
+ Derived2::~Derived2 ()
41
+ {
42
+ }
43
+
36
44
Base3 Derived2::getBase ()
37
45
{
38
46
return baseComponent;
@@ -57,6 +65,11 @@ void Derived2::defaultEnumValueFromDependency(OverlappingNamespace::ColorsEnum c
57
65
{
58
66
}
59
67
68
+ TemplateClass<int > Derived2::getTemplate ()
69
+ {
70
+ return t;
71
+ }
72
+
60
73
Abstract* Derived2::getAbstract ()
61
74
{
62
75
return 0 ;
Original file line number Diff line number Diff line change @@ -44,9 +44,11 @@ class Base3
44
44
45
45
template <typename T> class TemplateClass ;
46
46
47
- class Derived2 : public Base3
47
+ class DLL_API Derived2 : public Base3
48
48
{
49
49
public:
50
+ Derived2 ();
51
+ ~Derived2 ();
50
52
Base3 baseComponent;
51
53
Base3 getBase ();
52
54
void setBase (Base3);
@@ -56,10 +58,12 @@ class Derived2 : public Base3
56
58
void setNestedNSComponent (OverlappingNamespace::InDerivedLib);
57
59
void defaultEnumValueFromDependency (OverlappingNamespace::ColorsEnum c = OverlappingNamespace::ColorsEnum::black);
58
60
61
+ TemplateClass<int > getTemplate ();
59
62
Abstract* getAbstract ();
60
63
private:
61
64
TemplateClass<int > t;
62
65
TemplateClass<Derived> d;
66
+ Derived dd;
63
67
};
64
68
65
69
class DLL_API HasVirtualInDependency : public HasVirtualInCore
You can’t perform that action at this time.
0 commit comments