Perfecting IoTSlave for C++; Found one issue with SSH/Java process execution in which...
[iot2.git] / benchmarks / Cpp / Lifxtest / Lifxtest.hpp
1 #ifndef _LIFXTEST_HPP__
2 #define _LIFXTEST_HPP__
3 #include <iostream>
4 #include <fstream>
5
6 #include "IoTSet.hpp"
7 #include "LightBulb.hpp"
8 #include "LightBulbTest.hpp"
9
10
11 class Lifxtest {
12
13         private:
14                 // IoTSet
15                 IoTSet<void*>* lifx_light_bulb;
16
17                 ofstream log;
18
19         public:
20
21                 Lifxtest();
22                 Lifxtest(IoTSet<void*>* _lifx_light_bulb);
23                 Lifxtest(void** args);
24                 ~Lifxtest();
25                 void init();
26 };
27 #endif
28