00001 /* 00002 ClanGUI, copyrights by various people. Have a look in the CREDITS file. 00003 00004 This sourcecode is distributed using the Library GNU Public Licence, 00005 version 2 or (at your option) any later version. Please read LICENSE 00006 for details. 00007 */ 00008 00010 00011 #ifndef header_component_style 00012 #define header_component_style 00013 00014 class CL_Component; 00015 00016 class CL_ComponentStyle 00017 { 00018 public: 00019 CL_ComponentStyle(CL_Component *component) : comp(component) { return; } 00020 virtual ~CL_ComponentStyle() { return; } 00021 00022 CL_Component *get_component() { return comp; } 00023 const CL_Component *get_component() const { return comp; } 00024 00025 private: 00026 CL_Component *comp; 00027 }; 00028 00029 #endif
1.2.6 written by Dimitri van Heesch,
© 1997-2001