BioinstSim  2
 All Classes Functions Variables
render.h
1 #ifndef RENDER_H_
2 #define RENDER_H_
3 
4 /******************************************************************************/
5 /******************************************************************************/
6 
7 #include "common.h"
8 #include "simobject.h"
9 
10 /******************************************************************************/
11 /******************************************************************************/
12 
13 class CRender : public CSimObject
14 {
15 public:
16  CRender(const char* pch_name);
17  virtual ~CRender();
18 
19  virtual void SetFrameRate(double f_frame_rate);
20  virtual double GetFrameRate();
21 
22 
23 
24 protected:
25  double m_fFrameRate;
26 };
27 
28 /******************************************************************************/
29 /******************************************************************************/
30 
31 #endif