Perfecting IoTSlave for C++; Found one issue with SSH/Java process execution in which...
[iot2.git] / benchmarks / Cpp / Lifxtest / Lifxtest.hpp
index 0cdc745974eb865df63f66786587cba8e3624a49..eb8c15b47a2df1557175d62a6d77d47998943a66 100644 (file)
@@ -1,22 +1,25 @@
 #ifndef _LIFXTEST_HPP__
 #define _LIFXTEST_HPP__
 #include <iostream>
+#include <fstream>
 
 #include "IoTSet.hpp"
 #include "LightBulb.hpp"
 #include "LightBulbTest.hpp"
 
+
 class Lifxtest {
 
        private:
                // IoTSet
-               //IoTSet<LightBulbTest*> lifx_light_bulb;
-               IoTSet<LightBulb*> lifx_light_bulb;
+               IoTSet<void*>* lifx_light_bulb;
+
+               ofstream log;
 
        public:
 
                Lifxtest();
-               //Lifxtest(IoTSet<LightBulbTest*> _lifx_light_bulb);
+               Lifxtest(IoTSet<void*>* _lifx_light_bulb);
                Lifxtest(void** args);
                ~Lifxtest();
                void init();