X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_XmlHandler.h;h=79ad43b38fb6d0e1fd5f5e9924f9cdbeb368e0e1;hb=refs%2Ftags%2FT3_2_0b2;hp=363d9830c80b2d43ee842cf879b561464081d9db;hpb=c3bf92bd87b770fd81631a3853f7f5bb1ac6a4e8;p=modules%2Fsmesh.git diff --git a/src/SMESHGUI/SMESHGUI_XmlHandler.h b/src/SMESHGUI/SMESHGUI_XmlHandler.h index 363d9830c..79ad43b38 100644 --- a/src/SMESHGUI/SMESHGUI_XmlHandler.h +++ b/src/SMESHGUI/SMESHGUI_XmlHandler.h @@ -16,7 +16,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -25,10 +25,14 @@ // Module : SMESH // $Header$ -#include "SMESHGUI.h" +#ifndef SMESHGUI_XmlHandler_HeaderFile +#define SMESHGUI_XmlHandler_HeaderFile + +#include "SMESHGUI_Hypotheses.h" #include #include +#include class SMESHGUI_XmlHandler : public QXmlDefaultHandler { @@ -47,8 +51,10 @@ class SMESHGUI_XmlHandler : public QXmlDefaultHandler bool fatalError (const QXmlParseException& exception); public: - map myHypothesesMap; - map myAlgorithmsMap; + std::map myHypothesesMap; + std::map myAlgorithmsMap; + + std::list myListOfHypothesesSets; private: QString myErrorProt; @@ -56,3 +62,6 @@ class SMESHGUI_XmlHandler : public QXmlDefaultHandler QString myServerLib; QString myClientLib; }; + + +#endif