0022922: Clean up warnings on uninitialized / unused variables
[occt.git] / src / MXCAFDoc / MXCAFDoc_LayerToolRetrievalDriver.cxx
CommitLineData
7fd59977 1// File: MXCAFDoc_LayerToolRetrievalDriver.cxx
2// Created: Tue Aug 15 15:37:48 2000
3// Author: data exchange team
4// <det@strelox.nnov.matra-dtv.fr>
5
6
7#include <MDF_RRelocationTable.hxx>
8#include <MXCAFDoc_LayerToolRetrievalDriver.ixx>
9#include <PXCAFDoc_LayerTool.hxx>
10#include <XCAFDoc_LayerTool.hxx>
11
12
13//=======================================================================
14//function : Constructor
15//purpose :
16//=======================================================================
17
18MXCAFDoc_LayerToolRetrievalDriver::MXCAFDoc_LayerToolRetrievalDriver(const Handle(CDM_MessageDriver)& theMsgDriver) : MDF_ARDriver (theMsgDriver)
19{
20}
21
22//=======================================================================
23//function : VersionNumber
24//purpose :
25//=======================================================================
26
27 Standard_Integer MXCAFDoc_LayerToolRetrievalDriver::VersionNumber() const
28{
29 return 0;
30}
31
32//=======================================================================
33//function : SourceType
34//purpose :
35//=======================================================================
36
37 Handle(Standard_Type) MXCAFDoc_LayerToolRetrievalDriver::SourceType() const
38{
39 static Handle(Standard_Type) sourceType = STANDARD_TYPE(PXCAFDoc_LayerTool);
40 return sourceType;
41}
42
43//=======================================================================
44//function : NewEmpty
45//purpose :
46//=======================================================================
47
48 Handle(TDF_Attribute) MXCAFDoc_LayerToolRetrievalDriver::NewEmpty() const
49{
50 return new XCAFDoc_LayerTool();
51}
52
53//=======================================================================
54//function : Paste
55//purpose :
56//=======================================================================
57
58void MXCAFDoc_LayerToolRetrievalDriver::Paste (const Handle(PDF_Attribute)& /* Source */,
59 const Handle(TDF_Attribute)& /* Target */,
60 const Handle(MDF_RRelocationTable)& /*RelocTable*/) const
61{
62}
63