Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CSharpLinkToCxx/cpp_native.cpp
3148 views
1
#include "cpp_native.hpp"
2
3
#include <iostream>
4
5
namespace CppApp {
6
void MyCpp::testMyCpp()
7
{
8
std::cout << "#message from CppApp" << std::endl;
9
}
10
}
11
12