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