Salome HOME
PAL10237. Read HypothesesSet's
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_XmlHandler.h
index 363d9830c80b2d43ee842cf879b561464081d9db..ecf738528fe8b96ebadb57a6c66fb1d631f10bab 100644 (file)
 //  Module : SMESH
 //  $Header$
 
-#include "SMESHGUI.h"
+#ifndef SMESHGUI_XmlHandler_HeaderFile
+#define SMESHGUI_XmlHandler_HeaderFile
+
+#include "SMESHGUI_Hypotheses.h"
 
 #include <qxml.h>
 #include <map>
@@ -47,8 +50,10 @@ class SMESHGUI_XmlHandler : public QXmlDefaultHandler
   bool fatalError   (const QXmlParseException& exception);
 
  public:
-  map<string, HypothesisData*> myHypothesesMap;
-  map<string, HypothesisData*> myAlgorithmsMap;
+  std::map<std::string, HypothesisData*> myHypothesesMap;
+  std::map<std::string, HypothesisData*> myAlgorithmsMap;
+
+  std::list<HypothesesSet*> myListOfHypothesesSets;
 
  private:
   QString myErrorProt;
@@ -56,3 +61,6 @@ class SMESHGUI_XmlHandler : public QXmlDefaultHandler
   QString myServerLib;
   QString myClientLib;
 };
+
+
+#endif