Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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.cc

    r6287 r7779  
    2020#include "text.h"
    2121
    22 using namespace std;
    23 
    24 /**
    25  * standard constructor
    26 */
    27 GLGuiCheckButton::GLGuiCheckButton ()
     22namespace OrxGui
    2823{
    29   this->init();
    30 
    31 }
    3224
    3325
    34 /**
    35  * standard deconstructor
    36 */
    37 GLGuiCheckButton::~GLGuiCheckButton()
    38 {
     26  /**
     27   * standard constructor
     28  */
     29  GLGuiCheckButton::GLGuiCheckButton ()
     30  {
     31    this->init();
    3932
     33  }
     34
     35
     36  /**
     37   * standard deconstructor
     38  */
     39  GLGuiCheckButton::~GLGuiCheckButton()
     40  {
     41  }
     42
     43  /**
     44   * initializes the GUI-element
     45   */
     46  GLGuiCheckButton::init()
     47  {
     48    this->setClassID(CL_GLGUI_CHECKBUTTON, "GLGuiCheckButton");
     49
     50  }
     51
     52  /**
     53   * draws the GLGuiCheckButton
     54   */
     55  void GLGuiCheckButton::draw() const
     56  {
     57  }
    4058}
    41 
    42 /**
    43  * initializes the GUI-element
    44  */
    45 GLGuiCheckButton::init()
    46 {
    47   this->setClassID(CL_GLGUI_CHECKBUTTON, "GLGuiCheckButton");
    48 
    49 }
    50 
    51 /**
    52  * draws the GLGuiCheckButton
    53  */
    54 void GLGuiCheckButton::draw() const
    55 {
    56 
    57 }
Note: See TracChangeset for help on using the changeset viewer.