1 // SMESH SMESHGUI : reading of xml file with list of available hypotheses and algorithms
3 // Copyright (C) 2003 CEA
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License.
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 // File : SMESHGUI_XmlHandler.h
22 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
25 #ifndef SMESHGUI_XMLHANDLER_H
26 #define SMESHGUI_XMLHANDLER_H
29 #include "SMESH_SMESHGUI.hxx"
32 #include <QXmlDefaultHandler>
42 class SMESHGUI_EXPORT SMESHGUI_XmlHandler : public QXmlDefaultHandler
45 SMESHGUI_XmlHandler();
46 virtual ~SMESHGUI_XmlHandler();
49 bool startElement( const QString&, const QString&,
50 const QString&, const QXmlAttributes& );
51 bool endElement( const QString&, const QString&, const QString& );
52 bool characters( const QString& );
54 QString errorString();
55 QString errorProtocol();
56 bool fatalError( const QXmlParseException& );
59 std::map<std::string, HypothesisData*> myHypothesesMap;
60 std::map<std::string, HypothesisData*> myAlgorithmsMap;
62 std::list<HypothesesSet*> myListOfHypothesesSets;
71 #endif // SMESHGUI_XMLHANDLER_H