Adding C++ field instrumentation using config file
[iot2.git] / benchmarks / Cpp / Lifxtest / Lifxtest.hpp
index 41b61aaa907c8d1c42bcfd5799b68f367587461f..eb8c15b47a2df1557175d62a6d77d47998943a66 100644 (file)
@@ -1,20 +1,26 @@
 #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<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();
 };