00001 /*************************************************************************** 00002 contactlisthandler.h - description 00003 ------------------- 00004 begin : mar avr 11 2006 00005 copyright : (C) 2006 by Sylvain Archenault <sylvain.archenault@laposte.net>, \n 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 CONTACTLISTHANDLER_H 00018 #define CONTACTLISTHANDLER_H 00019 00020 #include <xml/structurehandlerbase.h> 00021 00027 class ContactListHandler : public StructureHandlerBase 00028 { 00029 public: 00031 ContactListHandler(); 00032 00034 ~ContactListHandler(); 00035 00045 StructureHandler* startChild(const XMLCh* const lname, const Attributes& attrs); 00046 00052 void endStructureChild(const XMLCh* const lname, const StructureHandler* pHandler); 00058 void startElement(const XMLCh* const localname, const Attributes& atts); 00059 00066 void endDirectChild(const XMLCh* const lname, const std::string& content); 00067 00068 }; 00069 00070 #endif
1.4.6