BioinstSim  2
 All Classes Functions Variables
circlebehavior.h
1 #ifndef CIRCLEBEHAVIOR_H
2 #define CIRCLEBEHAVIOR_H
3 
4 /******************************************************************************/
5 /******************************************************************************/
6 
7 #include "behavior.h"
8 
9 /******************************************************************************/
10 /******************************************************************************/
11 
12 class CCircleBehavior : public CBehavior
13 {
14 public:
16 
17  virtual bool TakeControl();
18  virtual void Action();
19  virtual void SetAgent(CAgent* pc_agent);
20 
21 
22 protected:
23  double m_ftheta;
24 };
25 
26 /******************************************************************************/
27 /******************************************************************************/
28 
29 
30 #endif // CIRCLEBEHAVIOR_H