source:
code/branches/FICN/src/orxonox/core/DebugLevel.h
@
668
Last change on this file since 668 was 562, checked in by landauf, 17 years ago | |
---|---|
File size: 395 bytes |
Line | |
---|---|
1 | #ifndef _DebugLevel_H__ |
2 | #define _DebugLevel_H__ |
3 | |
4 | #include "OrxonoxClass.h" |
5 | |
6 | namespace 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.