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.
49 lines
657 B
49 lines
657 B
#include "AnotherUnit.h" |
|
|
|
void SecondaryBase::VirtualMember() |
|
{ |
|
} |
|
|
|
int SecondaryBase::property() |
|
{ |
|
return 0; |
|
} |
|
|
|
void SecondaryBase::setProperty(int value) |
|
{ |
|
} |
|
|
|
void SecondaryBase::function(bool* ok) |
|
{ |
|
} |
|
|
|
void SecondaryBase::protectedFunction() |
|
{ |
|
} |
|
|
|
int SecondaryBase::protectedProperty() |
|
{ |
|
return 0; |
|
} |
|
|
|
void SecondaryBase::setProtectedProperty(int value) |
|
{ |
|
} |
|
|
|
void functionInAnotherUnit() |
|
{ |
|
} |
|
|
|
MultipleInheritance::MultipleInheritance() |
|
{ |
|
} |
|
|
|
MultipleInheritance::~MultipleInheritance() |
|
{ |
|
} |
|
|
|
namespace HasFreeConstant |
|
{ |
|
extern const int DLL_API FREE_CONSTANT_IN_NAMESPACE = 5; |
|
extern const std::string DLL_API STD_STRING_CONSTANT = "test"; |
|
}
|
|
|