00001 /*************************************************************************** 00002 eventhandler.h - description 00003 ------------------- 00004 begin : lun avr 24 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 EVENTHANDLER_H 00018 #define EVENTHANDLER_H 00019 00020 #include <structurehandlerbase.h> 00021 00027 class EventHandler : public StructureHandlerBase 00028 { 00029 public: 00031 EventHandler(); 00032 00034 ~EventHandler(); 00035 00041 void startElement(const XMLCh* const localname, const Attributes& atts); 00042 00052 StructureHandler* startChild(const XMLCh* const lname, const Attributes& attrs); 00053 00054 }; 00055 00056 #endif
1.4.6