Changeset 790 for code/trunk/src/orxonox/objects/test3.h
- Timestamp:
- Feb 7, 2008, 5:01:44 PM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
Property
svn:ignore
set to
dependencies
-
Property
svn:ignore
set to
-
code/trunk/src/orxonox/objects/test3.h
r258 r790 2 2 #define _Test3_H__ 3 3 4 #include " BaseObject.h"4 #include "core/BaseObject.h" 5 5 6 6 namespace orxonox … … 15 15 virtual ~Test3(); 16 16 17 bool usefullClassesIsATest(Test1* test1); 18 bool usefullClassesIsATest(Test2* test2); 17 void setConfigValues(); 18 19 void usefullClassesIsATest(Test1* test1); 20 void usefullClassesIsATest(Test2* test2); 21 22 void configOutput(); 23 24 private: 25 int value_int_; 26 unsigned int value_uint_; 27 char value_char_; 28 unsigned char value_uchar_; 29 float value_float_; 30 double value_double_; 31 bool value_bool_; 32 std::string value_string_; 33 const char* value_constchar_; 34 Vector2 value_vector2_; 35 Vector3 value_vector3_; 36 ColourValue value_colourvalue_; 19 37 }; 20 38 }
Note: See TracChangeset
for help on using the changeset viewer.