Salome HOME
Provide hasPreview method for operations with preview
[modules/shaper.git] / src / ModuleBase / ModuleBase_Definitions.h
index f32657a9edf6605a5141f0cabed0d5e7f996c22e..56049acec437d3ace6a27f5c9922e9c4edcf9629 100644 (file)
@@ -1,14 +1,14 @@
-
 #ifndef ModuleBase_Definitions_H
 #define ModuleBase_Definitions_H
 
 #include <QList>
 #include <ModelAPI_Feature.h>
+#include <ModelAPI_Result.h>
 
 typedef QList<int> QIntList;       //!< list of int values
 typedef QList<short> QShortList;     //!< list of short int values
 typedef QList<double> QDoubleList;    //!< list of double values
-typedef QList<FeaturePtr> QFeatureList; //!< List of features
-
+typedef QList<FeaturePtr> QFeatureList;  //!< List of features
+typedef QList<ResultPtr> QResultList;  //!< List of results
 
-#endif
\ No newline at end of file
+#endif