--- /dev/null
+#include <iostream>
+#include <string>
+#include "TestClassInterface_Skeleton.hpp"
+#include "TestClass.hpp"
+
+using namespace std;
+
+int main(int argc, char *argv[])
+{
+ // First argument is port number
+ int port = atoi(argv[1]);
+ int argv2 = atoi(argv[2]);
+ float argv3 = atof(argv[3]);
+ string argv4 = string(argv[4]);
+
+ cout << port << endl;
+ cout << argv2 << endl;
+ cout << argv3 << endl;
+ cout << argv4 << endl;
+
+ //TestClassInterface *tc = new TestClass(argv1, argv2, argv3);
+ //TestClassInterface_Skeleton *tcSkel = new TestClassInterface_Skeleton(tc, port);
+
+ //delete tc;
+ //delete tcSkel;
+ return 0;
+}