Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7779 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glgui_checkbutton.h


Ignore:
Timestamp:
May 23, 2006, 10:04:17 PM (18 years ago)
Author:
bensch
Message:

3088 linews changed :): trunk: namespaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/gui/gl_gui/glgui_checkbutton.h

    r6287 r7779  
    1010#include "glgui_button.h"
    1111
    12 // FORWARD DECLARATION
     12namespace OrxGui
     13{
    1314
    14 //! This is part of the openglGUI class
    15 /**
    16  *
    17  */
    18 class GLGuiCheckButton : public GLGuiButton {
     15  // FORWARD DECLARATION
    1916
    20  public:
    21   GLGuiCheckButton();
    22   virtual ~GLGuiCheckButton();
     17  //! This is part of the openglGUI class
     18  /**
     19   *
     20   */
     21  class GLGuiCheckButton : public GLGuiButton
     22  {
    2323
    24   void init();
     24  public:
     25    GLGuiCheckButton();
     26    virtual ~GLGuiCheckButton();
    2527
    26   bool    isActive() { return this->bActive; };
    27   void    setActivity(bool bActive);
     28    void init();
    2829
    29   virtual void draw() const;
    30   virtual void update() {};
     30    bool    isActive() { return this->bActive; };
     31    void    setActivity(bool bActive);
    3132
    32  private:
    33    bool             bActive;
     33    virtual void draw() const;
     34    virtual void update() {};
    3435
    35 };
     36  private:
     37    bool             bActive;
     38
     39  };
     40}
    3641
    3742#endif /* _GLGUI_CHECKBUTTON_H */
Note: See TracChangeset for help on using the changeset viewer.