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

    r5360 r7779  
    1818#include "glgui_.h"
    1919
    20 using namespace std;
     20namespace OrxGui
     21{
    2122
    22 /**
    23  * standard constructor
    24 */
    25 GLGui::GLGui ()
    26 {
    27   this->init();
     23  /**
     24   * standard constructor
     25  */
     26  GLGui::GLGui ()
     27  {
     28    this->init();
    2829
    29 }
     30  }
    3031
    3132
    32 /**
    33  * standard deconstructor
    34 */
    35 GLGui::~GLGui()
    36 {
     33  /**
     34   * standard deconstructor
     35  */
     36  GLGui::~GLGui()
     37  {
     38  }
    3739
     40  /**
     41   * initializes the GUI-element
     42   */
     43  GLGui::init()
     44  {
     45    this->setClassID(CL_GLGUI_, "GLGui");
     46
     47  }
     48
     49  /**
     50   * draws the GLGui
     51   */
     52  void GLGui::draw()
     53  {
     54  }
    3855}
    39 
    40 /**
    41  * initializes the GUI-element
    42  */
    43 GLGui::init()
    44 {
    45   this->setClassID(CL_GLGUI_, "GLGui");
    46 
    47 }
    48 
    49 /**
    50  * draws the GLGui
    51  */
    52 void GLGui::draw()
    53 {
    54 
    55 }
Note: See TracChangeset for help on using the changeset viewer.