Salome HOME
DCQ : Merge with Ecole_Ete_a6.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_XmlHandler.h
1 //  SMESH SMESHGUI : reading of xml file with list of available hypotheses and algorithms
2 //
3 //  Copyright (C) 2003  CEA
4 //
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. 
9 // 
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. 
14 // 
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 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : SMESHGUI_XmlHandler.cxx
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27
28 #include "SMESHGUI.h"
29
30 #include <qxml.h>
31 #include <map>
32
33 class SMESHGUI_XmlHandler : public QXmlDefaultHandler
34 {
35  public:
36   SMESHGUI_XmlHandler();
37   virtual ~SMESHGUI_XmlHandler();
38
39   bool startDocument();
40   bool startElement( const QString& namespaceURI, const QString& localName, 
41                      const QString& qName, const QXmlAttributes& atts );
42   bool endElement( const QString& namespaceURI, const QString& localName, const QString& qName );
43   bool characters( const QString& ch );
44
45   QString errorString();
46   QString errorProtocol();
47   bool fatalError   (const QXmlParseException& exception);
48
49  public:
50   map<string, HypothesisData*> myHypothesesMap;
51   map<string, HypothesisData*> myAlgorithmsMap;
52
53  private:
54   QString myErrorProt;
55   QString myPluginName;
56   QString myServerLib;
57   QString myClientLib;
58 };