vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
abstract0lsystem.h
Go to the documentation of this file.
1 #ifndef ABSTRACT0LSYSTEM_H_
2 #define ABSTRACT0LSYSTEM_H_
3 
4 #include "lsystem.h"
5 
6 namespace AP_LSystem {
10 class Abstract0LSystem : public LSystem
11 {
12 protected:
19  virtual void processPredecessor( Rule & rule, string * str, string::iterator & pos);
20 
27  virtual void processRuleSuccessor( Rule & rule, string * str, string::iterator & pos);
28 
35  virtual void processHomomorphismSuccessor( Rule & rule, string * str, string::iterator & pos);
36 public:
39 
40 };
41 }
42 #endif // ABSTRACT0LSYSTEM_H_