mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
PAL10237. Add class HypothesesSet
This commit is contained in:
parent
c00242c4f0
commit
4faf049688
@ -35,6 +35,7 @@
|
||||
#include <qstring.h>
|
||||
#include <qwidget.h>
|
||||
#include <qvaluevector.h>
|
||||
#include <qstringlist.h>
|
||||
|
||||
/*!
|
||||
* \brief Auxiliary class for creation of hypotheses
|
||||
@ -77,4 +78,21 @@ class HypothesisData
|
||||
bool IsAux; //!< TRUE if given hypothesis is auxiliary one, FALSE otherwise
|
||||
};
|
||||
|
||||
/*!
|
||||
* \brief Class containing set of hypotheses
|
||||
*
|
||||
* Actually it contains list of hypo types
|
||||
*/
|
||||
class HypothesesSet
|
||||
{
|
||||
public:
|
||||
HypothesesSet( const QString& theSetName )
|
||||
: HypoSetName( theSetName ) {};
|
||||
HypothesesSet( const QString& theSetName,
|
||||
const QStringList& theHypoList,
|
||||
const QStringList& theAlgoList )
|
||||
: HypoSetName( theSetName ), HypoList(theHypoList), AlgoList(theAlgoList) {};
|
||||
QString HypoSetName;
|
||||
QStringList HypoList, AlgoList;
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user