00001 /*************************************************************************** 00002 statechangedeventhandler.h - description 00003 ------------------- 00004 begin : lun avr 24 2006 00005 copyright : (C) 2006 by 00006 - Sylvain Archenault <sylvain.archenault@laposte.net> 00007 - Yves Houpert <yves.houpert@insa-rouen.fr> 00008 00009 ***************************************************************************/ 00010 00011 /*************************************************************************** 00012 * * 00013 * This program is free software; you can redistribute it and/or modify * 00014 * it under the terms of the GNU General Public License as published by * 00015 * the Free Software Foundation; either version 2 of the License, or * 00016 * (at your option) any later version. * 00017 * * 00018 ***************************************************************************/ 00019 #ifndef STATECHANGEDEVENTHANDLER_H 00020 #define STATECHANGEDEVENTHANDLER_H 00021 00022 #include <structurehandlerbase.h> 00023 00029 class StateChangedEventHandler : public StructureHandlerBase 00030 { 00031 public: 00033 StateChangedEventHandler(); 00034 00036 ~StateChangedEventHandler(); 00037 00044 void endDirectChild(const XMLCh* const lname, const std::string& content); 00045 00051 void startElement(const XMLCh* const lname, const Attributes& atts); 00052 00062 StructureHandler* startChild(const XMLCh* const lname, const Attributes& attrs); 00063 00064 private: //private members 00065 std::string m_sCurrentParam; 00066 }; 00067 00068 #endif
1.4.6