Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/core/DebugLevel.h @ 564

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

modified DebugLevel-hack

File size: 395 bytes
Line 
1#ifndef _DebugLevel_H__
2#define _DebugLevel_H__
3
4#include "OrxonoxClass.h"
5
6namespace orxonox
7{
8    class DebugLevel : public OrxonoxClass
9    {
10        public:
11            DebugLevel();
12            static int getSoftDebugLevel();
13
14        private:
15            int softDebugLevel_s;
16            static DebugLevel* pointer_s;
17            static bool bCreatingDebugLevelObject_s;
18    };
19}
20
21#endif
Note: See TracBrowser for help on using the repository browser.