0026411: Necessary to improve XCAF to store and querying GD&T data.
[occt.git] / src / XCAFDoc / XCAFDoc_Datum.hxx
CommitLineData
42cf5bc1 1// Created on: 2004-01-15
2// Created by: Sergey KUUL
3// Copyright (c) 2004-2014 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _XCAFDoc_Datum_HeaderFile
17#define _XCAFDoc_Datum_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <TDF_Attribute.hxx>
23class TCollection_HAsciiString;
24class Standard_GUID;
25class TDF_Label;
26class TDF_Attribute;
27class TDF_RelocationTable;
9ebaae37 28class XCAFDimTolObjects_DatumObject;
42cf5bc1 29
30
31class XCAFDoc_Datum;
32DEFINE_STANDARD_HANDLE(XCAFDoc_Datum, TDF_Attribute)
33
34//! attribute to store datum
35class XCAFDoc_Datum : public TDF_Attribute
36{
37
38public:
39
40
41 Standard_EXPORT XCAFDoc_Datum();
42
43 Standard_EXPORT static const Standard_GUID& GetID();
44
45 Standard_EXPORT static Handle(XCAFDoc_Datum) Set (const TDF_Label& label, const Handle(TCollection_HAsciiString)& aName, const Handle(TCollection_HAsciiString)& aDescription, const Handle(TCollection_HAsciiString)& anIdentification);
9ebaae37 46
47 Standard_EXPORT static Handle(XCAFDoc_Datum) Set (const TDF_Label& theLabel);
42cf5bc1 48
49 Standard_EXPORT void Set (const Handle(TCollection_HAsciiString)& aName, const Handle(TCollection_HAsciiString)& aDescription, const Handle(TCollection_HAsciiString)& anIdentification);
50
51 Standard_EXPORT Handle(TCollection_HAsciiString) GetName() const;
52
53 Standard_EXPORT Handle(TCollection_HAsciiString) GetDescription() const;
54
55 Standard_EXPORT Handle(TCollection_HAsciiString) GetIdentification() const;
56
9ebaae37 57 Standard_EXPORT Handle(XCAFDimTolObjects_DatumObject) GetObject() const;
58
59 Standard_EXPORT void SetObject (const Handle(XCAFDimTolObjects_DatumObject)& theObject);
60
42cf5bc1 61 Standard_EXPORT const Standard_GUID& ID() const;
62
63 Standard_EXPORT void Restore (const Handle(TDF_Attribute)& With);
64
65 Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const;
66
67 Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Into, const Handle(TDF_RelocationTable)& RT) const;
68
69
70
71
72 DEFINE_STANDARD_RTTI(XCAFDoc_Datum,TDF_Attribute)
73
74protected:
75
76
77
78
79private:
80
81
82 Handle(TCollection_HAsciiString) myName;
83 Handle(TCollection_HAsciiString) myDescription;
84 Handle(TCollection_HAsciiString) myIdentification;
85
86
87};
88
89
90
91
92
93
94
95#endif // _XCAFDoc_Datum_HeaderFile