Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_handler.h @ 5366

Last change on this file since 5366 was 5366, checked in by bensch, 19 years ago

orxonox/trunk: more definitions of GLGui.
also a patch to the resource-manager

File size: 590 bytes
Line 
1/*!
2 * @file proto_singleton.h
3 * @brief Definition of the ... singleton Class
4*/
5
6#ifndef _GLGUI_HANDLER_H
7#define _GLGUI_HANDLER_H
8
9#include "base_object.h"
10
11// FORWARD DEFINITION
12
13//! A default singleton class.
14class GLGuiHandler : public BaseObject {
15
16 public:
17  virtual ~GLGuiHandler(void);
18  /** @returns a Pointer to the only object of this Class */
19  inline static GLGuiHandler* getInstance(void) { if (!singletonRef) singletonRef = new GLGuiHandler();  return singletonRef; };
20
21 private:
22  GLGuiHandler(void);
23  static GLGuiHandler* singletonRef;
24};
25
26#endif /* _GLGUI_HANDLER_H */
Note: See TracBrowser for help on using the repository browser.