00001 /* 00002 * Copyright (C) 2003-2009 Olivier Boudeville 00003 * 00004 * This file is part of the Ceylan library. 00005 * 00006 * The Ceylan library is free software: you can redistribute it and/or modify 00007 * it under the terms of either the GNU Lesser General Public License or 00008 * the GNU General Public License, as they are published by the Free Software 00009 * Foundation, either version 3 of these Licenses, or (at your option) 00010 * any later version. 00011 * 00012 * The Ceylan library is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU Lesser General Public License and the GNU General Public License 00016 * for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License and the GNU General Public License along with the Ceylan library. 00020 * If not, see <http://www.gnu.org/licenses/>. 00021 * 00022 * Author: Olivier Boudeville (olivier.boudeville@esperide.com) 00023 * 00024 */ 00025 00026 00027 #ifndef CEYLAN_RESOURCE_H_ 00028 #define CEYLAN_RESOURCE_H_ 00029 00030 00031 #include "CeylanTextDisplayable.h" // for inheritance 00032 #include "CeylanException.h" // for inheritance 00033 #include "CeylanTypes.h" // for Ceylan::Uint32 00034 00035 00036 #include <string> 00037 00038 00039 00040 00041 namespace Ceylan 00042 { 00043 00044 00045 00047 class CEYLAN_DLL ResourceException : public Ceylan::Exception 00048 { 00049 00050 public: 00051 explicit ResourceException( const std::string & reason ) ; 00052 virtual ~ResourceException() throw() ; 00053 00054 } ; 00055 00056 00057 00058 00060 typedef Ceylan::Uint32 ResourceID ; 00061 00062 00063 00064 00074 class CEYLAN_DLL Resource : public Ceylan::TextDisplayable 00075 { 00076 00077 00078 00079 public: 00080 00081 00082 00084 Resource() ; 00085 00086 00088 virtual ~Resource() throw() ; 00089 00090 00101 virtual const std::string toString( 00102 Ceylan::VerbosityLevels level = Ceylan::high ) const ; 00103 00104 00105 00106 private: 00107 00108 00109 00117 Resource( const Resource & source ) ; 00118 00119 00127 Resource & operator = ( const Resource & source ) ; 00128 00129 00130 } ; 00131 00132 } 00133 00134 00135 00136 #endif // CEYLAN_RESOURCE_H_ 00137