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.
36 lines
511 B
36 lines
511 B
|
|
#include "MarshalingTests.h" |
|
|
|
ClassWithCopyCtor::ClassWithCopyCtor(const ClassWithCopyCtor& f) { |
|
x = f.x; |
|
} |
|
|
|
ClassWithCopyCtor |
|
ClassWithCopyCtor::Return (int x) { |
|
return ClassWithCopyCtor (x); |
|
} |
|
|
|
int |
|
ClassWithCopyCtor::GetX () { |
|
return x; |
|
} |
|
|
|
ClassWithDtor |
|
ClassWithDtor::Return (int x) { |
|
return ClassWithDtor (x); |
|
} |
|
|
|
int |
|
ClassWithDtor::GetX () { |
|
return x; |
|
} |
|
|
|
ClassWithoutCopyCtor |
|
ClassWithoutCopyCtor::Return (int x) { |
|
return ClassWithoutCopyCtor (x); |
|
} |
|
|
|
int |
|
ClassWithoutCopyCtor::GetX () { |
|
return x; |
|
}
|
|
|