Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/orxonox/objects/test3.h @ 450

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

added Ogre::Vector2 as configurable type

File size: 809 bytes
Line 
1#ifndef _Test3_H__
2#define _Test3_H__
3
4#include "BaseObject.h"
5
6namespace orxonox
7{
8    class Test1;
9    class Test2;
10
11    class Test3 : public BaseObject
12    {
13        public:
14            Test3();
15            virtual ~Test3();
16
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            double              value_double_;
27            bool                value_bool_;
28            std::string         value_string_;
29            Vector2             value_vector2_;
30            Vector3             value_vector3_;
31            ColourValue         value_colourvalue_;
32    };
33}
34
35#endif
Note: See TracBrowser for help on using the repository browser.