diff options
Diffstat (limited to 'Tests/CSharpLinkFromCxx/UsefulManagedCppClass.hpp')
-rw-r--r-- | Tests/CSharpLinkFromCxx/UsefulManagedCppClass.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/CSharpLinkFromCxx/UsefulManagedCppClass.hpp b/Tests/CSharpLinkFromCxx/UsefulManagedCppClass.hpp new file mode 100644 index 0000000..def7cea --- /dev/null +++ b/Tests/CSharpLinkFromCxx/UsefulManagedCppClass.hpp @@ -0,0 +1,16 @@ +using namespace System; + +namespace CSharpLibrary +{ + public ref class UsefulManagedCppClass + { + public: + + UsefulManagedCppClass(); + void RunTest(); + + private: + + String^ m_usefulString; + }; +} |