mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
54 lines
511 B
54 lines
511 B
#include "NamespacesBase.h" |
|
|
|
|
|
Base::Base(int i) |
|
{ |
|
b = i; |
|
} |
|
|
|
|
|
Base::Base() |
|
{ |
|
} |
|
|
|
int Base::parent() |
|
{ |
|
return 0; |
|
} |
|
|
|
Base2::Base2() : Base() |
|
{ |
|
} |
|
|
|
Base2::Base2(int i) : Base(i) |
|
{ |
|
} |
|
|
|
void Base2::parent(int i) |
|
{ |
|
} |
|
|
|
HasVirtualInCore::HasVirtualInCore() |
|
{ |
|
} |
|
|
|
HasVirtualInCore::HasVirtualInCore(TemplateClass<HasVirtualInCore> t) |
|
{ |
|
} |
|
|
|
int HasVirtualInCore::virtualInCore(int parameter) |
|
{ |
|
return 1; |
|
} |
|
|
|
SecondaryBase::SecondaryBase() |
|
{ |
|
} |
|
|
|
SecondaryBase::~SecondaryBase() |
|
{ |
|
} |
|
|
|
void SecondaryBase::function() |
|
{ |
|
}
|
|
|