28 lines
439 B
C++
Raw Normal View History

2015-02-26 09:02:31 -06:00
#ifndef STLINTERFACE_HH
#define STLINTERFACE_HH
2015-02-26 09:02:31 -06:00
#include <string>
namespace Trick {
class STLInterface {
public:
STLInterface() ;
virtual ~STLInterface() ;
virtual void checkpoint( std::string obj_name ) = 0 ;
virtual void restart( std::string obj_name ) = 0 ;
unsigned int stl_id ;
bool restore ;
virtual void post_checkpoint( std::string obj_name ) ;
} ;
} ;
#endif