#ifndef TEST2_HPP #define TEST2_HPP #include class test2 { public: //constructor test2(); void addCell(test1* cell); int NCells(); // returns number of cells with energy float CalcET(); // calculate ET private: float _Threshold; std::vector _Cells; }; #endif