Warning, file /include/opencascade/XCAFDoc_Note.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef _XCAFDoc_Note_HeaderFile
0015 #define _XCAFDoc_Note_HeaderFile
0016
0017 #include <Standard.hxx>
0018 #include <TCollection_ExtendedString.hxx>
0019 #include <TDF_DerivedAttribute.hxx>
0020 #include <TDF_LabelSequence.hxx>
0021 #include <XCAFNoteObjects_NoteObject.hxx>
0022
0023 class TDF_RelocationTable;
0024
0025
0026
0027
0028 class XCAFDoc_Note : public TDF_Attribute
0029 {
0030 public:
0031 DEFINE_STANDARD_RTTIEXT(XCAFDoc_Note, TDF_Attribute)
0032
0033
0034 Standard_EXPORT static Standard_Boolean IsMine(const TDF_Label& theLabel);
0035
0036
0037 Standard_EXPORT static Handle(XCAFDoc_Note) Get(const TDF_Label& theLabel);
0038
0039
0040
0041
0042
0043 Standard_EXPORT void Set(const TCollection_ExtendedString& theUserName,
0044 const TCollection_ExtendedString& theTimeStamp);
0045
0046
0047 const TCollection_ExtendedString& UserName() const { return myUserName; }
0048
0049
0050 const TCollection_ExtendedString& TimeStamp() const { return myTimeStamp; }
0051
0052
0053 Standard_EXPORT Standard_Boolean IsOrphan() const;
0054
0055
0056 Standard_EXPORT Handle(XCAFNoteObjects_NoteObject) GetObject() const;
0057
0058
0059 Standard_EXPORT void SetObject(const Handle(XCAFNoteObjects_NoteObject)& theObject);
0060
0061 public:
0062
0063 Standard_EXPORT void Restore(const Handle(TDF_Attribute)& theAttrFrom) Standard_OVERRIDE;
0064 Standard_EXPORT void Paste(const Handle(TDF_Attribute)& theAttrInto,
0065 const Handle(TDF_RelocationTable)& theRT) const Standard_OVERRIDE;
0066 Standard_EXPORT Standard_OStream& Dump(Standard_OStream& theOS) const Standard_OVERRIDE;
0067
0068
0069 Standard_EXPORT virtual void DumpJson(Standard_OStream& theOStream,
0070 Standard_Integer theDepth = -1) const Standard_OVERRIDE;
0071
0072 protected:
0073
0074 Standard_EXPORT XCAFDoc_Note();
0075
0076 private:
0077 TCollection_ExtendedString myUserName;
0078 TCollection_ExtendedString myTimeStamp;
0079 };
0080
0081 DEFINE_STANDARD_HANDLE(XCAFDoc_Note, TDF_Attribute)
0082
0083 #endif