terom@410: #ifndef GRAPHICS_GUI_HH terom@410: #define GRAPHICS_GUI_HH terom@410: terom@410: #include "GUIStyle.hh" terom@410: terom@410: #include terom@410: terom@410: terom@412: namespace graphics terom@410: { terom@410: terom@410: /** terom@410: * Our CL_GUIManager, for when we use ClanLib's GUI stuff terom@410: */ terom@410: class GUI : public CL_GUIManager { terom@410: public: terom@410: /** terom@410: * Construct default manager terom@410: */ terom@410: GUI (CL_ResourceManager *resources) : terom@410: CL_GUIManager(new GUIStyle(resources)) terom@410: { terom@410: terom@410: } terom@410: terom@410: terom@410: }; terom@410: terom@410: } terom@410: terom@410: #endif