#ifndef __CPPCODE_H__ #define __CPPCODE_H__ #include "dataManager.h" class pspa { void registerAllElements(); void splitter( string ); dataManager *dataManager_; string nameOfCase_; string typeOfFile_; public: pspa (); pspa ( string ); pspa ( string, string ); ~pspa (); string read( const char* ); bool simulate(); bool execute( string ); void setnameOfCase( string ); void printCase ( void ); void printJson ( const char* ); }; #endif //__CPPCODE_H__