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