Changes and additional files for RMI profiling
[iot2.git] / iotjava / iotrmi / C++ / basics / TestClassProfiling.hpp
diff --git a/iotjava/iotrmi/C++/basics/TestClassProfiling.hpp b/iotjava/iotrmi/C++/basics/TestClassProfiling.hpp
new file mode 100644 (file)
index 0000000..b15f092
--- /dev/null
@@ -0,0 +1,35 @@
+#ifndef _TESTCLASS_HPP__
+#define _TESTCLASS_HPP__
+
+#include <iostream>
+#include <thread>
+#include <chrono>
+#include "TestClassInterface.hpp"
+#include "CallBackInterfaceWithCallBack.hpp"
+#include "Enum.hpp"
+#include "Struct.hpp"
+
+using namespace std;
+
+class TestClassProfiling : public TestClassInterface {
+       public:
+               TestClassProfiling();
+
+               vector<char>            getByteArray(vector<char> in);
+
+};
+
+
+TestClassProfiling::TestClassProfiling() {
+
+}
+
+// Arrays
+vector<char> TestClass::getByteArray(vector<char> in) {
+
+       return in;
+}
+
+
+#endif
+