]> SALOME platform Git repositories - modules/homard.git/blobdiff - src/HOMARDGUI/HomardConfigFile.hxx
Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/homard.git] / src / HOMARDGUI / HomardConfigFile.hxx
diff --git a/src/HOMARDGUI/HomardConfigFile.hxx b/src/HOMARDGUI/HomardConfigFile.hxx
deleted file mode 100644 (file)
index 0c3de37..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-//
-//  File   : HomardConfigFile.hxx
-//  Author : Paul RASCLE, EDF
-//  Module : SMESH
-
-
-#ifndef _HOMARD_CONFIG_FILE
-#define _HOMARD_CONFIG_FILE
-
-#include <string>
-#include <map>
-#include <list>
-
-using namespace std;
-
-class HomardConfigFile
-{
-       typedef string motcle;
-       typedef string valeur;
-
-public  :
-       HomardConfigFile();
-       ~HomardConfigFile();
-         bool initVal(const string motclef ,const string valeur);
-         bool createFile();
-         void setBilan(bool etat);
-         string getMyDir();
-
-protected :
-
-       std::list<motcle> _motscle_ss_valeur;
-       std::list<motcle> _motscle_oui_non ;
-       std::list<motcle> _motscle_autre;
-
-       std::map <motcle,valeur> _dictValeur;
-       std::map <motcle,int>    _dictValeuroui;
-
-        string _nomFichier;
-        string _prefix;
-        bool   _bBilan;
-        string _myDir;
-
-        bool cherche_dans_liste(std::list<motcle> & liste , const motcle motclef);
-} ;
-#endif