0023024: Update headers of OCCT files
[occt.git] / src / DDF / DDF_Data.cxx
CommitLineData
b311480e 1// Created by: VAUTHIER Jean-Claude & DAUTRY Philippe
2// Copyright (c) 1997-1999 Matra Datavision
3// Copyright (c) 1999-2012 OPEN CASCADE SAS
4//
5// The content of this file is subject to the Open CASCADE Technology Public
6// License Version 6.5 (the "License"). You may not use the content of this file
7// except in compliance with the License. Please obtain a copy of the License
8// at http://www.opencascade.org and read it completely before using this file.
9//
10// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12//
13// The Original Code and all software distributed under the License is
14// distributed on an "AS IS" basis, without warranty of any kind, and the
15// Initial Developer hereby disclaims all such warranties, including without
16// limitation, any warranties of merchantability, fitness for a particular
17// purpose or non-infringement. Please see the License for the specific terms
18// and conditions governing the rights and limitations under the License.
19
7fd59977 20// ------------
7fd59977 21
22// Version: 0.0
b311480e 23//Version Date Purpose
7fd59977 24// 0.0 Feb 10 1997 Creation
25
26
27
28#include <DDF_Data.ixx>
29#include <DDF.hxx>
30
31#include <Standard_GUID.hxx>
32
33#include <TCollection_AsciiString.hxx>
34
35#include <TDF_Attribute.hxx>
36#include <TDF_Label.hxx>
37#include <TDF_ChildIterator.hxx>
38#include <TDF_AttributeIterator.hxx>
39#include <TDF_IDFilter.hxx>
40#include <TDF_Tool.hxx>
41
42
43
44//=======================================================================
45//function : DDF_Data
46//purpose :
47//=======================================================================
48
49DDF_Data::DDF_Data(const Handle(TDF_Data)& aDF) : myDF (aDF) {}
50
51
52
53//=======================================================================
54//function : DrawOn
55//purpose :
56//=======================================================================
57
58void DDF_Data::DrawOn(Draw_Display& dis) const
59
60{ cout<<"DDF_Data"<<endl; }
61
62
63
64//=======================================================================
65//function : Copy
66//purpose :
67//=======================================================================
68
69Handle(Draw_Drawable3D) DDF_Data::Copy() const { return new DDF_Data (myDF); }
70
71
72
73//=======================================================================
74//function : Dump
75//purpose :
76//=======================================================================
77
78void DDF_Data::Dump(Standard_OStream& S) const
79
80{
81 TDF_Tool::DeepDump(S,myDF);
82}
83
84
85//=======================================================================
86//function : DataFramework
87//purpose :
88//=======================================================================
89
90Handle(TDF_Data) DDF_Data::DataFramework () const { return myDF; }
91
92
93
94
95//=======================================================================
96//function : DataFramework
97//purpose :
98//=======================================================================
99
100void DDF_Data::DataFramework (const Handle(TDF_Data)& aDF)
101
102{ myDF = aDF; }
103
104
105
106
107//=======================================================================
108//function : Whatis
109//purpose :
110//=======================================================================
111
112void DDF_Data::Whatis (Draw_Interpretor& I) const
113
114{
115 I << "Data Framework";
116}