X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHDS%2FSMESHDS_Hypothesis.hxx;h=32705efae63e145a9a42287bab654c99b0e61c71;hp=85e115c05d149150d026b3b0f07fb479cddd4e32;hb=88b3dbe23b236bd1746405155ae33a76aaf59ecd;hpb=cb4e582b0cbbcf1864292d59535033ad724e46f2 diff --git a/src/SMESHDS/SMESHDS_Hypothesis.hxx b/src/SMESHDS/SMESHDS_Hypothesis.hxx index 85e115c05..32705efae 100644 --- a/src/SMESHDS/SMESHDS_Hypothesis.hxx +++ b/src/SMESHDS/SMESHDS_Hypothesis.hxx @@ -39,9 +39,11 @@ class SMESHDS_EXPORT SMESHDS_Hypothesis SMESHDS_Hypothesis(int hypId); virtual ~SMESHDS_Hypothesis(); + enum hypothesis_type { PARAM_ALGO, ALGO_0D, ALGO_1D, ALGO_2D, ALGO_3D }; + const char* GetName() const; - int GetID() const; - int GetType() const; + int GetID() const; + int GetType() const; virtual std::ostream & SaveTo(std::ostream & save)=0; virtual std::istream & LoadFrom(std::istream & load)=0; @@ -49,12 +51,10 @@ class SMESHDS_EXPORT SMESHDS_Hypothesis virtual bool operator==(const SMESHDS_Hypothesis& other) const; bool operator!=(const SMESHDS_Hypothesis& other) const { return !(*this==other); } - enum hypothesis_type { PARAM_ALGO, ALGO_0D, ALGO_1D, ALGO_2D, ALGO_3D }; - protected: - std::string _name; // identifier if hypothesis type - int _hypId; // ID unique within application session - int _type; // enum hypothesis_type + std::string _name; // identifier of hypothesis type + int _hypId; // ID unique within application session + hypothesis_type _type; // enum hypothesis_type }; #endif