Salome HOME
0021197: EDF 1772 SMESH: Automatic meshing hypothesis
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Hypotheses.h
index 34b875fa3814b0e37c345d46928035b698228af9..a6f0a70a8f220792cc2f7d0ef0a292d9284d0b6a 100644 (file)
@@ -202,6 +202,10 @@ public:
   void set( bool, const QStringList& );
   int count( bool ) const;
 
+  void setIsCustom( bool );
+  bool getIsCustom() const;
+  int maxDim() const;
+
   bool isAlgo() const;
 
   //this method sets internal index to -1, thus before any data access it is necessary to call next()
@@ -216,9 +220,9 @@ private:
   QStringList* list() const;
 
 private:
-  bool myIsAlgo;
   QString     myHypoSetName;
   QStringList myHypoList, myAlgoList;
+  bool myIsAlgo, myIsCustom;
   int myIndex;
 };