Main Page | Class Hierarchy | Class List | File List | Class Members

rendererror.h

00001 /* ************************************************************************* 00002 rendererror.h - description 00003 ------------------- 00004 begin : Wed Oct 16 2002 00005 copyright : (C) 2002 by Micha Riser 00006 email : mriser@gmx.net 00007 00008 $Id: rendererror_8h-source.html,v 1.1 2005/02/04 21:02:27 micha Exp $ 00009 00010 ************************************************************************* */ 00011 00012 /* ************************************************************************* 00013 * * 00014 * This program is free software; you can redistribute it and/or modify * 00015 * it under the terms of the GNU General Public License as published by * 00016 * the Free Software Foundation; either version 2 of the License, or * 00017 * (at your option) any later version. * 00018 * * 00019 ************************************************************************* */ 00020 00021 #ifndef RENDERERROR_H 00022 #define RENDERERROR_H 00023 00024 #include<string> 00025 00030 class RenderError { 00031 00032 public: // Constructors and destructor 00033 00036 RenderError():message("") {}; 00037 00041 RenderError(const std::string& s): message(s) {} 00042 00043 ~RenderError() {} 00044 00045 private: // Private attributes 00046 const std::string message; 00047 00048 }; 00049 00050 #endif

Generated on Thu Jan 27 12:16:06 2005 for raytracer.kdevelop by doxygen 1.3.8