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