Last change
on this file since 5731 was
5405,
checked in by bensch, 19 years ago
|
orxonox/trunk: renamed definition to the right term declaration…
|
File size:
609 bytes
|
Rev | Line | |
---|
[4838] | 1 | /*! |
---|
| 2 | * @file proto_singleton.h |
---|
| 3 | * @brief Definition of the ... singleton Class |
---|
[3655] | 4 | */ |
---|
| 5 | |
---|
| 6 | #ifndef _PROTO_SINGLETON_H |
---|
| 7 | #define _PROTO_SINGLETON_H |
---|
| 8 | |
---|
| 9 | #include "base_object.h" |
---|
| 10 | |
---|
[5405] | 11 | // FORWARD DECLARATION |
---|
[3655] | 12 | |
---|
| 13 | //! A default singleton class. |
---|
| 14 | class ProtoSingleton : public BaseObject { |
---|
| 15 | |
---|
| 16 | public: |
---|
| 17 | virtual ~ProtoSingleton(void); |
---|
[4838] | 18 | /** @returns a Pointer to the only object of this Class */ |
---|
[4519] | 19 | inline static ProtoSingleton* getInstance(void) { if (!singletonRef) singletonRef = new ProtoSingleton(); return singletonRef; }; |
---|
[3655] | 20 | |
---|
| 21 | private: |
---|
| 22 | ProtoSingleton(void); |
---|
| 23 | static ProtoSingleton* singletonRef; |
---|
| 24 | }; |
---|
| 25 | |
---|
| 26 | #endif /* _PROTO_SINGLETON_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.