b15f09234e6b41dcad7e4c9abe4cfa18914098a2
[iot2.git] / iotjava / iotrmi / C++ / basics / TestClassProfiling.hpp
1 #ifndef _TESTCLASS_HPP__
2 #define _TESTCLASS_HPP__
3
4 #include <iostream>
5 #include <thread>
6 #include <chrono>
7 #include "TestClassInterface.hpp"
8 #include "CallBackInterfaceWithCallBack.hpp"
9 #include "Enum.hpp"
10 #include "Struct.hpp"
11
12 using namespace std;
13
14 class TestClassProfiling : public TestClassInterface {
15         public:
16                 TestClassProfiling();
17
18                 vector<char>            getByteArray(vector<char> in);
19
20 };
21
22
23 TestClassProfiling::TestClassProfiling() {
24
25 }
26
27 // Arrays
28 vector<char> TestClass::getByteArray(vector<char> in) {
29
30         return in;
31 }
32
33
34 #endif
35