Cleaning up drivers/Cpp, Cpp/Lifxtest, virtuals, and iotrmi/C++ (revisiting the C...
[iot2.git] / iotjava / iotrmi / C++ / sample / TestClass_Skeleton.cpp
diff --git a/iotjava/iotrmi/C++/sample/TestClass_Skeleton.cpp b/iotjava/iotrmi/C++/sample/TestClass_Skeleton.cpp
deleted file mode 100644 (file)
index e16c727..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <iostream>
-#include <string>
-#include "TestClass_Skeleton.hpp"
-#include "TestClass.hpp"
-
-using namespace std;
-
-int main(int argc, char *argv[])
-{
-       TestClassInterface *tc;
-       TestClass_Skeleton *tcSkel;
-       try {
-               int port = 5010;
-               tc = new TestClass(3, 5.0, "7911");
-               tcSkel = new TestClass_Skeleton(tc, port);
-       } catch(const exception&) {
-               return EXIT_FAILURE;
-       }
-       //tcSkel->waitRequestInvokeMethod();
-
-       delete tc;
-       delete tcSkel;
-       return 0;
-}