Last change
on this file since 1296 was
1052,
checked in by landauf, 17 years ago
|
merged core2 back to trunk
there might be some errors, wasn't able to test it yet due to some strange g++ and linker behaviour.
|
File size:
1.2 KB
|
Rev | Line | |
---|
[944] | 1 | #ifndef _Test3_H__ |
---|
| 2 | #define _Test3_H__ |
---|
| 3 | |
---|
[1052] | 4 | #include <vector> |
---|
| 5 | |
---|
[944] | 6 | #include "core/BaseObject.h" |
---|
| 7 | #include "util/Math.h" |
---|
| 8 | |
---|
| 9 | namespace orxonox |
---|
| 10 | { |
---|
| 11 | class Test1; |
---|
| 12 | class Test2; |
---|
| 13 | |
---|
| 14 | class Test3 : public BaseObject |
---|
| 15 | { |
---|
| 16 | public: |
---|
| 17 | Test3(); |
---|
| 18 | virtual ~Test3(); |
---|
| 19 | |
---|
| 20 | void setConfigValues(); |
---|
| 21 | |
---|
| 22 | void usefullClassesIsATest(Test1* test1); |
---|
| 23 | void usefullClassesIsATest(Test2* test2); |
---|
| 24 | |
---|
| 25 | void configOutput(); |
---|
| 26 | |
---|
| 27 | private: |
---|
| 28 | int value_int_; |
---|
| 29 | unsigned int value_uint_; |
---|
| 30 | char value_char_; |
---|
| 31 | unsigned char value_uchar_; |
---|
| 32 | float value_float_; |
---|
| 33 | double value_double_; |
---|
| 34 | bool value_bool_; |
---|
| 35 | std::string value_string_; |
---|
| 36 | const char* value_constchar_; |
---|
| 37 | Vector2 value_vector2_; |
---|
| 38 | Vector3 value_vector3_; |
---|
| 39 | ColourValue value_colourvalue_; |
---|
[1052] | 40 | |
---|
| 41 | std::vector<int> vector_int_; |
---|
| 42 | std::vector<std::string> vector_string_; |
---|
| 43 | std::vector<Vector3> vector_vector3_; |
---|
[944] | 44 | }; |
---|
| 45 | } |
---|
| 46 | |
---|
| 47 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.