Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 680 was 673, checked in by rgrieder, 18 years ago
  • deleted obsolete classes: BaseEntity, Entity, Light and SceneNode (please complain if not agreed)
  • improved include guard naming consistency
File size: 417 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 /* _DebugLevel_H__ */
Note: See TracBrowser for help on using the repository browser.