Completing Tomoyo policies for all 4 benchmarks
[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         string callbackAddress = "128.195.204.132";
16         tcSkel = new TestClassInterface_Skeleton(tc, callbackAddress, port);
17
18         delete tc;
19         delete tcSkel;
20         return 0;
21 }