Rev | Line | |
---|
[197] | 1 | #ifndef _Test3_H__ |
---|
| 2 | #define _Test3_H__ |
---|
| 3 | |
---|
[790] | 4 | #include "core/BaseObject.h" |
---|
[871] | 5 | #include "util/Math.h" |
---|
[197] | 6 | |
---|
| 7 | namespace orxonox |
---|
| 8 | { |
---|
| 9 | class Test1; |
---|
| 10 | class Test2; |
---|
| 11 | |
---|
| 12 | class Test3 : public BaseObject |
---|
| 13 | { |
---|
| 14 | public: |
---|
| 15 | Test3(); |
---|
| 16 | virtual ~Test3(); |
---|
| 17 | |
---|
[790] | 18 | void setConfigValues(); |
---|
| 19 | |
---|
| 20 | void usefullClassesIsATest(Test1* test1); |
---|
| 21 | void usefullClassesIsATest(Test2* test2); |
---|
| 22 | |
---|
| 23 | void configOutput(); |
---|
| 24 | |
---|
| 25 | private: |
---|
| 26 | int value_int_; |
---|
| 27 | unsigned int value_uint_; |
---|
| 28 | char value_char_; |
---|
| 29 | unsigned char value_uchar_; |
---|
| 30 | float value_float_; |
---|
| 31 | double value_double_; |
---|
| 32 | bool value_bool_; |
---|
| 33 | std::string value_string_; |
---|
| 34 | const char* value_constchar_; |
---|
| 35 | Vector2 value_vector2_; |
---|
| 36 | Vector3 value_vector3_; |
---|
| 37 | ColourValue value_colourvalue_; |
---|
[197] | 38 | }; |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.