mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-01 04:10:33 +05:00
- int _type; // enum hypothesis_type
+ hypothesis_type _type; // enum hypothesis_type
This commit is contained in:
parent
12443c9c47
commit
0397dbe729
@ -39,9 +39,11 @@ class SMESHDS_EXPORT SMESHDS_Hypothesis
|
|||||||
SMESHDS_Hypothesis(int hypId);
|
SMESHDS_Hypothesis(int hypId);
|
||||||
virtual ~SMESHDS_Hypothesis();
|
virtual ~SMESHDS_Hypothesis();
|
||||||
|
|
||||||
|
enum hypothesis_type { PARAM_ALGO, ALGO_0D, ALGO_1D, ALGO_2D, ALGO_3D };
|
||||||
|
|
||||||
const char* GetName() const;
|
const char* GetName() const;
|
||||||
int GetID() const;
|
int GetID() const;
|
||||||
int GetType() const;
|
int GetType() const;
|
||||||
|
|
||||||
virtual std::ostream & SaveTo(std::ostream & save)=0;
|
virtual std::ostream & SaveTo(std::ostream & save)=0;
|
||||||
virtual std::istream & LoadFrom(std::istream & load)=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;
|
virtual bool operator==(const SMESHDS_Hypothesis& other) const;
|
||||||
bool operator!=(const SMESHDS_Hypothesis& other) const { return !(*this==other); }
|
bool operator!=(const SMESHDS_Hypothesis& other) const { return !(*this==other); }
|
||||||
|
|
||||||
enum hypothesis_type { PARAM_ALGO, ALGO_0D, ALGO_1D, ALGO_2D, ALGO_3D };
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
std::string _name; // identifier if hypothesis type
|
std::string _name; // identifier of hypothesis type
|
||||||
int _hypId; // ID unique within application session
|
int _hypId; // ID unique within application session
|
||||||
int _type; // enum hypothesis_type
|
hypothesis_type _type; // enum hypothesis_type
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user