Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ModuleBase / ModuleBase_Definitions.h
1 #ifndef ModuleBase_Definitions_H
2 #define ModuleBase_Definitions_H
3
4 #include <QList>
5 #include <ModelAPI_Feature.h>
6 #include <ModelAPI_Result.h>
7
8 typedef QList<int> QIntList;       //!< list of int values
9 typedef QList<short> QShortList;     //!< list of short int values
10 typedef QList<double> QDoubleList;    //!< list of double values
11 typedef QList<FeaturePtr> QFeatureList;  //!< List of features
12 typedef QList<ResultPtr> QResultList;  //!< List of results
13
14 #endif