vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
pard0lsystem.h
Go to the documentation of this file.
1 #ifndef PARD0LSYSTEM_H_
2 #define PARD0LSYSTEM_H_
3 
4 #include "abstract0lsystem.h"
5 
6 namespace AP_LSystem {
8 {
9 private:
10  static const unsigned int capabilities = LS_0L | LS_DETERMINISTIC | LS_PARAMETRIC;
11 public:
13 
14  static bool isCapable( unsigned int type )
15  {
16  if( ( type & capabilities ) == type )
17  return true;
18  else
19  return false;
20  }
21 };
22 }
23 #endif // PARD0LSYSTEM_H_