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.
21 lines
420 B
21 lines
420 B
#include "../Tests.h" |
|
#include <string> |
|
|
|
class DLL_API Foo |
|
{ |
|
public: |
|
Foo(); |
|
~Foo(); |
|
|
|
const char* Unicode; |
|
static std::string StringVariable; |
|
|
|
// TODO: VC++ does not support char16 |
|
// char16 chr16; |
|
|
|
// TODO: move this, it has nothing to do with Unicode, it's here only not to break the CLI branch |
|
int operator[](int i) const; |
|
int operator[](int i); |
|
}; |
|
|
|
DLL_API int FooCallFoo(Foo* foo);
|
|
|