Last change
on this file since 782 was
774,
checked in by rgrieder, 17 years ago
|
- changed executable from main to orxonox
- added src/orxonox to the include directories
|
File size:
1.0 KB
|
Rev | Line | |
---|
[197] | 1 | #ifndef _Test3_H__ |
---|
| 2 | #define _Test3_H__ |
---|
| 3 | |
---|
[774] | 4 | #include "core/BaseObject.h" |
---|
[197] | 5 | |
---|
| 6 | namespace orxonox |
---|
| 7 | { |
---|
| 8 | class Test1; |
---|
| 9 | class Test2; |
---|
| 10 | |
---|
| 11 | class Test3 : public BaseObject |
---|
| 12 | { |
---|
| 13 | public: |
---|
| 14 | Test3(); |
---|
| 15 | virtual ~Test3(); |
---|
| 16 | |
---|
[496] | 17 | void setConfigValues(); |
---|
| 18 | |
---|
[356] | 19 | void usefullClassesIsATest(Test1* test1); |
---|
| 20 | void usefullClassesIsATest(Test2* test2); |
---|
[496] | 21 | |
---|
| 22 | void configOutput(); |
---|
| 23 | |
---|
| 24 | private: |
---|
| 25 | int value_int_; |
---|
[667] | 26 | unsigned int value_uint_; |
---|
| 27 | char value_char_; |
---|
| 28 | unsigned char value_uchar_; |
---|
| 29 | float value_float_; |
---|
[496] | 30 | double value_double_; |
---|
| 31 | bool value_bool_; |
---|
| 32 | std::string value_string_; |
---|
[667] | 33 | const char* value_constchar_; |
---|
[496] | 34 | Vector2 value_vector2_; |
---|
| 35 | Vector3 value_vector3_; |
---|
| 36 | ColourValue value_colourvalue_; |
---|
[197] | 37 | }; |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.