00001 /*************************************************************************** 00002 errorhandler.h - description 00003 ------------------- 00004 begin : mar avr 25 2006 00005 copyright : (C) 2006 by Sylvain Archenault <sylvain.archenault@laposte.net> Yves Houpert <yves.houpert@insa-rouen.fr> 00006 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 #ifndef ERRORHANDLER_H 00018 #define ERRORHANDLER_H 00019 00020 #include <structurehandlerbase.h> 00021 00027 class ErrorHandler : public StructureHandlerBase 00028 { 00029 public: 00031 ErrorHandler(); 00032 00034 ~ErrorHandler(); 00035 00042 void endDirectChild(const XMLCh* const lname, const std::string& content); 00043 00049 void startElement(const XMLCh* const lname, const Attributes& atts); 00050 00051 }; 00052 00053 #endif
1.4.6