Adding new policy, Java, and Cpp files for testing/debugging
[iot2.git] / iotjava / iotrmi / C++ / basics / TestClass_Skeleton.cpp
1 #include <iostream>
2 #include <string>
3 #include "TestClassInterface_Skeleton.hpp"
4 #include "TestClass.hpp"
5
6 using namespace std;
7
8 int main(int argc, char *argv[])
9 {
10         TestClassInterface *tc;
11         TestClassInterface_Skeleton *tcSkel;
12
13         int port = 5010;
14         tc = new TestClass(3, 5.0, "7911");
15         tcSkel = new TestClassInterface_Skeleton(tc, port);
16
17         delete tc;
18         delete tcSkel;
19         return 0;
20 }