vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
lsystemgenerator.h
Go to the documentation of this file.
1 #ifndef LSYSTEMGENERATOR_H_
2 #define LSYSTEMGENERATOR_H_
3 
4 #include "abstractgenerator.h"
5 
6 namespace AP_LSystem {
11 {
12 public:
16  LSystemGenerator(void);
17 
21  ~LSystemGenerator(void);
22 
27  virtual void loadFile( std::string & filename );
28 
32  virtual void nextIteration();
33 
38  virtual ParseableString * getWord();
39 };
40 }
41 #endif