ximol/encoders/error.cpp

Go to the documentation of this file.
00001 /*****************************************************************************\
00002  *                                                                           *
00003  * library XiMoL                                                             *
00004  * Copyright (C) 2002, 2003, 2004 Florent Tournois                           *
00005  *                                                                           *
00006  * This library is free software; you can redistribute it and/or             *
00007  * modify it under the terms of the GNU Lesser General Public                *
00008  * License as published by the Free Software Foundation; either              *
00009  * version 2.1 of the License, or (at your option) any later version.        *
00010  *                                                                           *
00011  * This library is distributed in the hope that it will be useful,           *
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of            *
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU         *
00014  * Lesser General Public License for more details.                           *
00015  *                                                                           *
00016  * You should have received a copy of the GNU Lesser General Public          *
00017  * License along with this library; if not, write to the Free Software       *
00018  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA   *
00019  *                                                                           *
00020 \*****************************************************************************/
00021 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00022 /** \file 
00023         \brief error class implementation.
00024 
00025         \author Tournois Florent
00026         \version 1.0
00027 
00028     $Id: error.cpp,v 1.9 2004/02/22 10:27:34 tournois Exp $
00029     $Log: error.cpp,v $
00030     Revision 1.9  2004/02/22 10:27:34  tournois
00031     Add some doc.
00032 
00033     Revision 1.8  2004/02/22 09:54:20  tournois
00034     Change years on the copyright.
00035 
00036     Revision 1.7  2003/11/16 13:25:25  tournois
00037     Change the error to use wide string.
00038     Change the translation to use wide string.
00039 
00040     Revision 1.6  2003/11/02 19:23:01  tournois
00041     Go to the boost coding standard.
00042     Change all name to lower case.
00043 
00044     Revision 1.5  2003/10/25 13:53:39  hfp
00045     review and separation
00046 
00047     Revision 1.4  2003/10/09 16:59:45  tournois
00048     add the stringstream initialisation.
00049     add some prolog test.
00050     Correct code for VC6.0.
00051 
00052     Revision 1.3  2003/09/28 16:39:11  hfp
00053     Constructors of class error has overqualified construction of base class
00054 
00055     Revision 1.2  2003/09/24 08:28:17  tournois
00056     Create the namespace Encoders, Parser, Xml
00057     Change the library organization.
00058     add VC7.1 project for this organization.
00059 
00060   */
00061 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00062 #include <ximol/encoders/error.hpp>
00063 
00064 
00065 XIMOL_ENCODERS_BEGIN_NAMESPACE
00066 
00067 //-----------------------------------------------------------------------------
00068 // Constructor.
00069 //-----------------------------------------------------------------------------
00070 error::error()
00071 {
00072 }
00073 
00074 //-----------------------------------------------------------------------------
00075 // Constructor.
00076 //-----------------------------------------------------------------------------
00077 error::error(const ::std::wstring& xS)
00078         : base_type(xS)
00079 {
00080 }
00081 
00082 //-----------------------------------------------------------------------------
00083 // Constructor.
00084 //-----------------------------------------------------------------------------
00085 error::error(const error& x)
00086         : base_type(x)
00087 {
00088 }
00089 
00090 //-----------------------------------------------------------------------------
00091 // Destructor.
00092 //-----------------------------------------------------------------------------
00093 error::~error() throw()
00094 {
00095 }
00096    
00097 XIMOL_ENCODERS_END_NAMESPACE


Donate to the XiMoL project SourceForge.net Logo If you have any questions about XiMoL, you could write to tournois@users.sourceforge.net.