Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/orxonox/objects/test3.h @ 852

Last change on this file since 852 was 852, checked in by landauf, 16 years ago

removed some includes of CoreIncludes.h from other .h files (included in .cc only)

File size: 1.0 KB
Line 
1#ifndef _Test3_H__
2#define _Test3_H__
3
4#include "core/BaseObject.h"
5#include "util/Math.h"
6
7namespace orxonox
8{
9    class Test1;
10    class Test2;
11
12    class Test3 : public BaseObject
13    {
14        public:
15            Test3();
16            virtual ~Test3();
17
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_;
38    };
39}
40
41#endif
Note: See TracBrowser for help on using the repository browser.