Salome HOME
Task #3235: Projection without link to source shape
[modules/shaper.git] / src / ModuleBase / ModuleBase_Definitions.h
index 926de63ca9fb4a83dc85f9403c747bdecc31abe0..040fddbbb4fe5b5473cec7451490c0c0f24e10c7 100644 (file)
@@ -1,13 +1,30 @@
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
 #ifndef ModuleBase_Definitions_H
 #define ModuleBase_Definitions_H
 
 #include <QList>
-#include <ModelAPI_Feature.h>
-#include <ModelAPI_Result.h>
+#include <ModelAPI_Object.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<ResultPtr> QResultList;  //!< List of results
+typedef QList<ObjectPtr> QObjectPtrList;  //!< List of ModelAPI_Objects
 #endif