BioinstSim  2
 All Classes Functions Variables
consolerender.h
1 #ifndef CONSOLRENDER_H_
2 #define CONSOLRENDER_H_
3 
4 /******************************************************************************/
5 /******************************************************************************/
6 
7 #include "common.h"
8 #include "render.h"
9 
10 /******************************************************************************/
11 /******************************************************************************/
12 
13 class CConsolRender : public CRender
14 {
15 public:
16  CConsolRender(const char* pc_name);
17  virtual ~CConsolRender(const char* pc_name);
18 
19  virtual void SimulationStep(unsigned int un_step_number);
20 
21 protected:
22 
23 }
24 
25 /******************************************************************************/
26 /******************************************************************************/
27 
28 #endif