00001 /*************************************************************************** 00002 addcontactanswerhandler.h - description 00003 ------------------- 00004 begin : mar avr 11 2006 00005 copyright : (C) 2006 by Sylvain Archenault <sylvain.archenault@laposte.net> 00006 Yves Houpert <yves.houpert@insa-rouen.fr> 00007 00008 ***************************************************************************/ 00009 00010 /*************************************************************************** 00011 * * 00012 * This program is free software; you can redistribute it and/or modify * 00013 * it under the terms of the GNU General Public License as published by * 00014 * the Free Software Foundation; either version 2 of the License, or * 00015 * (at your option) any later version. * 00016 * * 00017 ***************************************************************************/ 00018 #ifndef ADDCONTACTANSWERHANDLER_H 00019 #define ADDCONTACTANSWERHANDLER_H 00020 00021 #include <structurehandlerbase.h> 00022 #include <xercesc/util/XMLString.hpp> 00023 00024 XERCES_CPP_NAMESPACE_USE; 00025 00031 class AddContactAnswerHandler : public StructureHandlerBase 00032 { 00033 public: 00035 AddContactAnswerHandler(); 00036 00038 ~AddContactAnswerHandler(); 00039 00045 void startElement( const XMLCh* const localname, const Attributes& atts); 00046 00056 StructureHandler* startChild(const XMLCh* const lname, const Attributes& attrs); 00057 00064 void endDirectChild(const XMLCh* const lname, const std::string& content); 00065 00071 void endStructureChild(const XMLCh* const lname, const StructureHandler* pHandler); 00072 00073 }; 00074 00075 #endif
1.4.6