Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

stylemanager_generic.cpp

Go to the documentation of this file.
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 
00009 #include "precomp.h"
00010 #include "API/GUI/stylemanager.h"
00011 
00013 // CL_StyleManager_Generic:
00014 
00015 class CL_StyleManager_Generic
00016 {
00017 public:
00018         CL_ResourceManager *resources;
00019 };
00020 
00022 // CL_StyleManager construction:
00023 
00024 CL_StyleManager::CL_StyleManager(CL_ResourceManager *resources)
00025 : impl(new CL_StyleManager_Generic)
00026 {
00027         impl->resources = resources;
00028 }
00029 
00030 CL_StyleManager::~CL_StyleManager()
00031 {
00032         delete impl;
00033 }
00034 
00036 // CL_StyleManager attributes:
00037 
00038 CL_ResourceManager *CL_StyleManager::get_resources()
00039 {
00040         return impl->resources;
00041 }

Generated at Wed Apr 4 19:54:04 2001 for ClanLib by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001