Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7779 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glgui_mainwidget.cc


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

    r5384 r7779  
    1818#include "glgui_mainwidget.h"
    1919
    20 using namespace std;
     20namespace OrxGui
     21{
    2122
    2223
    23 /**
    24  * standard constructor
    25  */
    26 GLGuiMainWidget::GLGuiMainWidget()
    27 {
    28   this->setClassID(CL_GLGUI_MAIN_WIDGET, "GLGuiMainWidget");
    29   this->setName("GLGuiMainWidget");
     24  /**
     25   * standard constructor
     26   */
     27  GLGuiMainWidget::GLGuiMainWidget()
     28  {
     29    this->setClassID(CL_GLGUI_MAIN_WIDGET, "GLGuiMainWidget");
     30    this->setName("GLGuiMainWidget");
     31  }
     32
     33  /**
     34   *  the singleton reference to this class
     35   */
     36  GLGuiMainWidget* GLGuiMainWidget::singletonRef = NULL;
     37
     38  /**
     39   * standard deconstructor
     40   */
     41  GLGuiMainWidget::~GLGuiMainWidget ()
     42  {
     43    GLGuiMainWidget::singletonRef = NULL;
     44  }
    3045}
    31 
    32 /**
    33  *  the singleton reference to this class
    34  */
    35 GLGuiMainWidget* GLGuiMainWidget::singletonRef = NULL;
    36 
    37 /**
    38  * standard deconstructor
    39  */
    40 GLGuiMainWidget::~GLGuiMainWidget ()
    41 {
    42   GLGuiMainWidget::singletonRef = NULL;
    43 }
Note: See TracChangeset for help on using the changeset viewer.