diff -r 712b943195a6 -r 74e562e16399 src/Graphics/GUIStyle.hh --- a/src/Graphics/GUIStyle.hh Sat Jan 24 01:19:38 2009 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,37 +0,0 @@ -#ifndef GRAPHICS_GUI_STYLE_HH -#define GRAPHICS_GUI_STYLE_HH - -#include "GUI.hh" - -#include - -namespace graphics -{ - -/** - * Our CL_StyleManager used for drawing ClanLib's GUI components - */ -class GUIStyle : public CL_StyleManager_Silver { -public: - /** - * Construct GUI style - */ - GUIStyle (CL_ResourceManager *resources) : - CL_StyleManager_Silver(resources) - { - - } - - /** - * Handle attaching style objects to components - */ - virtual void connect_styles (const std::string &type, CL_Component *component) { - - // default to parent impl - CL_StyleManager_Silver::connect_styles(type, component); - } -}; - -} - -#endif