Changeset 4746 in orxonox.OLD for orxonox/trunk/src/lib/event
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/event/event_handler.h
r4519 r4746 19 19 20 20 public: 21 virtual ~EventHandler( void);21 virtual ~EventHandler(); 22 22 /** \returns a Pointer to the only object of this Class */ 23 inline static EventHandler* getInstance( void) { if (!singletonRef) singletonRef = new EventHandler(); return singletonRef; };23 inline static EventHandler* getInstance() { if (!singletonRef) singletonRef = new EventHandler(); return singletonRef; }; 24 24 void init(); 25 25 … … 34 34 35 35 private: 36 EventHandler( void);36 EventHandler(); 37 37 38 38
Note: See TracChangeset
for help on using the changeset viewer.