1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0027632: Visualization, XCAFPrs_AISObject - provide method for assigning new Label in the document

This commit is contained in:
kgv 2016-07-09 16:57:04 +03:00 committed by bugmaster
parent 60adbe67f2
commit 593dfe97ea

View File

@ -29,7 +29,14 @@ public:
Standard_EXPORT XCAFPrs_AISObject (const TDF_Label& theLabel);
//! Returns the label which was visualised by this presentation
Standard_EXPORT inline TDF_Label GetLabel() const { return myLabel; }
const TDF_Label& GetLabel() const { return myLabel; }
//! Assign the label to this presentation
//! (but does not mark it outdated with SetToUpdate()).
void SetLabel (const TDF_Label& theLabel)
{
myLabel = theLabel;
}
protected:
@ -48,7 +55,7 @@ protected:
//! By default, the style uses white color for curves and surfaces.
Standard_EXPORT virtual void DefaultStyle (XCAFPrs_Style& theStyle) const;
private:
protected:
TDF_Label myLabel;