FACT++  1.0
MainImp.h
Go to the documentation of this file.
1 #ifndef FACT_MainImp
2 #define FACT_MainImp
3 
4 class MainImp
5 {
6 public:
7  virtual ~MainImp() {}
8  virtual int Run(bool) = 0;
9  virtual void Stop(int) = 0;
10 };
11 
12 #endif
virtual ~MainImp()
Definition: MainImp.h:7
Definition: MainImp.h:4
virtual void Stop(int)=0
virtual int Run(bool)=0