summaryrefslogtreecommitdiff
path: root/Tests/CSharpLinkToCxx/cpp_native.cpp
blob: dc7670fe2271296b6bd8de73377e6a5782a5b08a (plain)
1
2
3
4
5
6
7
8
9
10
#include "cpp_native.hpp"

#include <iostream>

namespace CppApp {
void MyCpp::testMyCpp()
{
  std::cout << "#message from CppApp" << std::endl;
}
}