#if !defined(RUNNER_H_INCLUDED) #define RUNNER_H_INCLUDED #include // std::set #include // std::string #include "StorageBinList.h" class CParser; class runner { public: runner(void); runner(CParser & parser); virtual ~runner(void); bool Read(CParser & parser); StorageBinListItem & Get_cells(void) { return(this->cells); }; double Get_time_step() { return(this->time_step); }; double Get_start_time() { return(this->start_time); }; protected: double time_step; double start_time; StorageBinListItem cells; }; #endif // !defined(RUNNER_H_INCLUDED)