Salome HOME
Linux compilation and isPreviewNeeded method implementation.
[modules/shaper.git] / src / ModelAPI / ModelAPI_Tools.h
index bec1b9da1019db0f6d24606ac546cdcd9a1c61a5..e89a713ce23507f04d22c29243699f2600e14454 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModelAPI_Tools.h
 // Created:     06 Aug 2014
 // Author:      Vitaly Smetannikov
 #include <ModelAPI_Result.h>
 #include <GeomAPI_Shape.h>
 
+#include <vector>
+
 namespace ModelAPI_Tools {
 /// Returns shape from the given Result object
-MODELAPI_EXPORT boost::shared_ptr<GeomAPI_Shape> shape(const ResultPtr& theResult);
+MODELAPI_EXPORT std::shared_ptr<GeomAPI_Shape> shape(const ResultPtr& theResult);
+
+/*!
+ * Searches for variable with name \param theName in the active document (Part), when
+ * in the root document (PartSet). If found, set it value in the \param outValue
+ * and returns true.
+ */
+MODELAPI_EXPORT bool findVariable(const std::string& theName, double& outValue);
+
+/*!
+ * Returns the values of the next random color. The values are in range [0, 255]
+ * \param theValues a container of component of RGB value: red, green, blue
+ */
+MODELAPI_EXPORT void findRandomColor(std::vector<int>& theValues);
+
 }
-;
 
 #endif