Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / ModelAPI / ModelAPI_Result.h
index a9e6bd525d48327aee41cc35134fed2c0244a2cc..c418e7ac70c85286387f7b407f6d17f24089cbb9 100644 (file)
@@ -14,7 +14,8 @@
 // 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<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
 //
 
 #ifndef ModelAPI_Result_H_
@@ -48,13 +49,21 @@ class ModelAPI_Result : public ModelAPI_Object
   }
 
   /// Reference to the deflection of the result.
-  /// The double value is used. The values is in [0, 1] range
+  /// The double value is used. The value is in [0, 1] range
   inline static const std::string& DEFLECTION_ID()
   {
     static const std::string MY_DEFLECTION_ID("Deflection");
     return MY_DEFLECTION_ID;
   }
 
+  /// Reference to the transparency of the result.
+  /// The double value is used. The value is in [0, 1] range
+  inline static const std::string& TRANSPARENCY_ID()
+  {
+    static const std::string MY_TRANSPARENCY_ID("Transparency");
+    return MY_TRANSPARENCY_ID;
+  }
+
   /// Returns true if the result is concealed from the data tree (referenced by other objects)
   MODELAPI_EXPORT virtual bool isConcealed();