Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7779 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glgui_text.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_text.cc

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