mirror of https://github.com/mono/CppSharp.git
4 changed files with 47 additions and 4 deletions
@ -1,6 +1,12 @@ |
|||||||
#include "NamespacesDerived.h" |
#include "NamespacesDerived.h" |
||||||
|
|
||||||
|
|
||||||
Derived::Derived() : Base(10), component(5) |
Derived::Derived() : Base(10), baseComponent(5), nestedNSComponent(), color(OverlappingNamespace::blue) |
||||||
{ |
{ |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
OverlappingNamespace::InDerivedLib::InDerivedLib() : parentNSComponent(), color(black) |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
|
@ -1,13 +1,29 @@ |
|||||||
#include "../Tests.h" |
#include "../Tests.h" |
||||||
#include "../NamespacesBase/NamespacesBase.h" |
#include "../NamespacesBase/NamespacesBase.h" |
||||||
|
|
||||||
|
namespace OverlappingNamespace |
||||||
|
{ |
||||||
|
|
||||||
|
class InDerivedLib |
||||||
|
{ |
||||||
|
public: |
||||||
|
InDerivedLib(); |
||||||
|
Base parentNSComponent; |
||||||
|
Colors color; |
||||||
|
}; |
||||||
|
} |
||||||
|
|
||||||
class DLL_API Derived : public Base |
class DLL_API Derived : public Base |
||||||
{ |
{ |
||||||
public: |
public: |
||||||
Derived(); |
Derived(); |
||||||
|
|
||||||
Base component; |
Base baseComponent; |
||||||
|
|
||||||
|
OverlappingNamespace::InBaseLib nestedNSComponent; |
||||||
|
|
||||||
|
OverlappingNamespace::Colors color; |
||||||
|
|
||||||
private: |
private: |
||||||
int d; |
int d; |
||||||
}; |
}; |
||||||
|
Loading…
Reference in new issue