vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
queryturtle.h
Go to the documentation of this file.
1 #ifndef QUERYTURTLE_H_
2 #define QUERYTURTLE_H_
3 
4 #include "movingturtle.h"
5 
6 namespace AP_LSystem {
10 class QueryTurtle : public MovingTurtle
11 {
12 public:
13  QueryTurtle(void){};
14  ~QueryTurtle(void){};
15 
16  virtual int initialize( )
17  {
18  return LS_OK;
19  }
20  virtual int finalize( )
21  {
22  return LS_OK;
23  }
24 };
25 }
26 
27 
28 #endif