summaryrefslogtreecommitdiffstats
path: root/Tests/CSharpLinkToCxx/cpp_native.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CSharpLinkToCxx/cpp_native.cpp')
-rw-r--r--Tests/CSharpLinkToCxx/cpp_native.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/CSharpLinkToCxx/cpp_native.cpp b/Tests/CSharpLinkToCxx/cpp_native.cpp
new file mode 100644
index 0000000..dc7670f
--- /dev/null
+++ b/Tests/CSharpLinkToCxx/cpp_native.cpp
@@ -0,0 +1,10 @@
+#include "cpp_native.hpp"
+
+#include <iostream>
+
+namespace CppApp {
+void MyCpp::testMyCpp()
+{
+ std::cout << "#message from CppApp" << std::endl;
+}
+}