Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_mainwidget.cc @ 6774

Last change on this file since 6774 was 5384, checked in by bensch, 19 years ago

orxonox/trunk: introducing the GLGuiMainWidget-class, that is the topmost of all widgets

File size: 893 bytes
RevLine 
[4744]1/*
[3655]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
[5384]12   main-programmer: Benjamin Grauer
[3655]13   co-programmer: ...
14*/
15
[5384]16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI
[3655]17
[5384]18#include "glgui_mainwidget.h"
[3655]19
20using namespace std;
21
22
23/**
[4838]24 * standard constructor
25 */
[5384]26GLGuiMainWidget::GLGuiMainWidget()
[3655]27{
[5384]28  this->setClassID(CL_GLGUI_MAIN_WIDGET, "GLGuiMainWidget");
29  this->setName("GLGuiMainWidget");
[3655]30}
31
32/**
[4838]33 *  the singleton reference to this class
34 */
[5384]35GLGuiMainWidget* GLGuiMainWidget::singletonRef = NULL;
[3655]36
37/**
[5384]38 * standard deconstructor
[4838]39 */
[5384]40GLGuiMainWidget::~GLGuiMainWidget ()
[3655]41{
[5384]42  GLGuiMainWidget::singletonRef = NULL;
[3655]43}
Note: See TracBrowser for help on using the repository browser.