]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Methods: SetParameters(), GetParameter() are removed because now it is GEOM_Function...
authorasl <asl@opencascade.com>
Fri, 20 Nov 2009 08:05:42 +0000 (08:05 +0000)
committerasl <asl@opencascade.com>
Fri, 20 Nov 2009 08:05:42 +0000 (08:05 +0000)
src/GEOM/GEOM_Object.cxx
src/GEOM/GEOM_Object.hxx

index fc2170a8612e7ca8c488741c3a90da6023f3ada3..5d2b18a8fc1673af3f0559b3cf2cb3f7a6b227cd 100644 (file)
@@ -497,32 +497,6 @@ TCollection_AsciiString GEOM_Object::GetAuxData()
   return aData;
 }
 
-//=============================================================================
-/*!
- *  SetParameters
- */
-//=============================================================================
-void GEOM_Object::SetParameters(const TCollection_AsciiString& theParameters)
-{
-  if( _parameters.IsEmpty() )
-    _parameters = theParameters;
-  else {
-    _parameters += "|";
-    _parameters += theParameters;
-  }
-}
-
-//=============================================================================
-/*!
- *  GetParameters
- */
-//=============================================================================
-TCollection_AsciiString GEOM_Object::GetParameters() const
-{
-  return _parameters;
-}
-
-
 //=============================================================================
 /*!
  *  IsSubShape
index c79f827e1de78bc5459d5da8e37182acd793ebfd..3fce10f1510c77850f6e09ee4c5956101aab2a96 100644 (file)
@@ -68,7 +68,7 @@ class Standard_Transient;
 class Handle_Standard_Type;
 class Handle(MMgt_TShared);
 class GEOM_Object;
-
+class TColStd_Array1OfAsciiString;
 
 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(GEOM_Object);
 
@@ -242,12 +242,6 @@ class GEOM_Object : public MMgt_TShared
   //Returns an auxiliary data
   Standard_EXPORT TCollection_AsciiString GetAuxData();
 
-  //Set a notebook variables used for object creation
-  Standard_EXPORT void SetParameters(const TCollection_AsciiString& theParameters);
-
-  //Get a notebook variables used for object creation
-  Standard_EXPORT TCollection_AsciiString GetParameters() const;
-
   //###########################################################
   // Sub shape methods
   //###########################################################
@@ -299,7 +293,6 @@ class GEOM_Object : public MMgt_TShared
   Handle(TDataStd_TreeNode) _root;
   TDF_Label                 _label;
   TCollection_AsciiString   _ior;
-  TCollection_AsciiString   _parameters;
   int                       _docID;
 };