Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

added a config-file-parser and a makro ( SetConfigValue(variable, defaultvalue) ) to get user-modified values from the config-file (or to write the defaultvalue into it if the variable isn't yet in the file).

File size: 760 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            Vector3             value_vector3_;
30            ColourValue         value_colourvalue_;
31    };
32}
33
34#endif
Note: See TracBrowser for help on using the repository browser.