Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4746 in orxonox.OLD for orxonox/trunk/src/lib/event


Ignore:
Timestamp:
Jul 1, 2005, 12:48:48 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: changed (void) → ()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/event/event_handler.h

    r4519 r4746  
    1919
    2020 public:
    21   virtual ~EventHandler(void);
     21  virtual ~EventHandler();
    2222  /** \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; };
    2424  void init();
    2525
     
    3434
    3535 private:
    36   EventHandler(void);
     36  EventHandler();
    3737 
    3838
Note: See TracChangeset for help on using the changeset viewer.