mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
28 lines
443 B
C++
28 lines
443 B
C++
|
|
||
|
#ifndef _STLINTERFACE_HH_
|
||
|
#define _STLINTERFACE_HH_
|
||
|
|
||
|
#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
|