File indexing completed on 2025-01-18 10:05:34
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _XCAFDoc_View_HeaderFile
0017 #define _XCAFDoc_View_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <TDataStd_GenericEmpty.hxx>
0023 class Standard_GUID;
0024 class TDF_Label;
0025 class XCAFView_Object;
0026
0027
0028 #ifdef GetObject
0029 #undef GetObject
0030 #endif
0031
0032 class XCAFDoc_View;
0033 DEFINE_STANDARD_HANDLE(XCAFDoc_View, TDataStd_GenericEmpty)
0034
0035
0036 class XCAFDoc_View : public TDataStd_GenericEmpty
0037 {
0038
0039 public:
0040
0041 Standard_EXPORT XCAFDoc_View();
0042
0043 Standard_EXPORT static const Standard_GUID& GetID();
0044
0045 Standard_EXPORT static Handle(XCAFDoc_View) Set (const TDF_Label& theLabel);
0046
0047 Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
0048
0049
0050
0051 Standard_EXPORT void SetObject(const Handle(XCAFView_Object)& theViewObject);
0052
0053
0054 Standard_EXPORT Handle(XCAFView_Object) GetObject() const;
0055
0056
0057 DEFINE_DERIVED_ATTRIBUTE(XCAFDoc_View, TDataStd_GenericEmpty)
0058
0059 };
0060
0061 #endif