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
class Handle_Standard_Type;
class Handle(MMgt_TShared);
class GEOM_Object;
-
+class TColStd_Array1OfAsciiString;
Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(GEOM_Object);
//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
//###########################################################
Handle(TDataStd_TreeNode) _root;
TDF_Label _label;
TCollection_AsciiString _ior;
- TCollection_AsciiString _parameters;
int _docID;
};