Cleaning up drivers/Cpp, Cpp/Lifxtest, virtuals, and iotrmi/C++ (revisiting the C...
[iot2.git] / iotjava / iotrmi / C++ / sample / CallBack_Stub.cpp
diff --git a/iotjava/iotrmi/C++/sample/CallBack_Stub.cpp b/iotjava/iotrmi/C++/sample/CallBack_Stub.cpp
deleted file mode 100644 (file)
index 04fd684..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <iostream>
-#include <string>
-#include "CallBack_Stub.hpp"
-
-using namespace std;
-
-int main(int argc, char *argv[])
-{
-
-       int port = 5010;
-       const char* address = "localhost";
-       int rev = 0;
-       bool bResult = false;
-
-       CallBackInterface *cbStub = new CallBack_Stub(port, address, rev, &bResult);
-       cout << "Return value: " << cbStub->printInt() << endl;
-       cbStub->setInt(123);
-       cout << "Return value: " << cbStub->printInt() << endl;
-
-       delete cbStub;
-
-       return 0;
-}