]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_Definitions.h
Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ModuleBase / ModuleBase_Definitions.h
1
2 #ifndef ModuleBase_Definitions_H
3 #define ModuleBase_Definitions_H
4
5 #include <QList>
6 #include <ModelAPI_Feature.h>
7 #include <ModelAPI_Result.h>
8
9 typedef QList<int> QIntList;       //!< list of int values
10 typedef QList<short> QShortList;     //!< list of short int values
11 typedef QList<double> QDoubleList;    //!< list of double values
12 typedef QList<FeaturePtr> QFeatureList; //!< List of features
13 typedef QList<ResultPtr> QResultList; //!< List of results
14
15
16 #endif