Changeset 8972 in orxonox.OLD for trunk/src/world_entities/elements/glgui_energywidget.h
- Timestamp:
- Jul 1, 2006, 11:26:00 AM (19 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/elements/glgui_energywidget.h
r8970 r8972 1 1 /*! 2 * @file proto_class.h3 * @brief Definition of ...2 * @file glgui_energywidget.h 3 * @brief Definition of an EnergyWidget, that displays a bar and a Text 4 4 */ 5 5 6 #ifndef _ PROTO_CLASS_H7 #define _ PROTO_CLASS_H6 #ifndef _GLGUI_ENERGY_WIDGET_H 7 #define _GLGUI_ENERGY_WIDGET_H 8 8 9 #include "base_object.h" 9 #include "glgui_widget.h" 10 #include "glgui_bar.h" 11 #include "glgui_text.h" 10 12 11 // FORWARD DECLARATION 13 namespace OrxGui 14 { 15 16 //! A class for ... 17 class GLGuiEnergyWidget : public GLGuiWidget 18 { 19 20 public: 21 GLGuiEnergyWidget(); 22 virtual ~GLGuiEnergyWidget(); 12 23 13 24 25 private: 26 GLGuiBar bar; 27 GLGuiText text; 14 28 15 //! A class for ... 16 class ProtoClass : public BaseObject { 17 18 public: 19 ProtoClass(); 20 virtual ~ProtoClass(); 21 22 23 private: 24 25 }; 26 27 #endif /* _PROTO_CLASS_H */ 29 }; 30 } 31 #endif /* _GLGUI_ENERGY_WIDGET_H */
Note: See TracChangeset
for help on using the changeset viewer.