Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

    r5365 r7779  
    1717
    1818#include "glgui_textfield_.h"
     19namespace OrxGui
     20{
    1921
    20 using namespace std;
     22  /**
     23   * standard constructor
     24  */
     25  GLGuiTextfield::GLGuiTextfield ()
     26  {
     27    this->init();
    2128
    22 /**
    23  * standard constructor
    24 */
    25 GLGuiTextfield::GLGuiTextfield ()
    26 {
    27   this->init();
    28 
    29 }
     29  }
    3030
    3131
    32 /**
    33  * standard deconstructor
    34 */
    35 GLGuiTextfield::~GLGuiTextfield()
    36 {
     32  /**
     33   * standard deconstructor
     34  */
     35  GLGuiTextfield::~GLGuiTextfield()
     36  {
     37  }
    3738
     39  /**
     40   * initializes the GUI-element
     41   */
     42  void GLGuiTextfield::init()
     43  {
     44    this->setClassID(CL_GLGUI_, "GLGuiTextfield");
     45
     46  }
     47
     48  /**
     49   * draws the GLGuiTextfield
     50   */
     51  void GLGuiTextfield::draw()
     52  {
     53  }
    3854}
    39 
    40 /**
    41  * initializes the GUI-element
    42  */
    43 void GLGuiTextfield::init()
    44 {
    45   this->setClassID(CL_GLGUI_, "GLGuiTextfield");
    46 
    47 }
    48 
    49 /**
    50  * draws the GLGuiTextfield
    51  */
    52 void GLGuiTextfield::draw()
    53 {
    54 
    55 }
Note: See TracChangeset for help on using the changeset viewer.