mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
439 B
29 lines
439 B
#include "../Tests.h" |
|
#include "../NamespacesBase/NamespacesBase.h" |
|
|
|
namespace OverlappingNamespace |
|
{ |
|
|
|
class InDerivedLib |
|
{ |
|
public: |
|
InDerivedLib(); |
|
Base parentNSComponent; |
|
Colors color; |
|
}; |
|
} |
|
|
|
class DLL_API Derived : public Base |
|
{ |
|
public: |
|
Derived(); |
|
|
|
Base baseComponent; |
|
|
|
OverlappingNamespace::InBaseLib nestedNSComponent; |
|
|
|
OverlappingNamespace::Colors color; |
|
|
|
private: |
|
int d; |
|
};
|
|
|