0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / BinMDataXtd / BinMDataXtd_PlacementDriver.cxx
CommitLineData
b311480e 1// Created on: 2004-05-13
2// Created by: Sergey ZARITCHNY
973c2be1 3// Copyright (c) 2004-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
7fd59977 15
42cf5bc1 16
17#include <BinMDataXtd_PlacementDriver.hxx>
7fd59977 18#include <BinMDF_ADriver.hxx>
19#include <BinObjMgt_Persistent.hxx>
20#include <BinObjMgt_RRelocationTable.hxx>
21#include <BinObjMgt_SRelocationTable.hxx>
83ae3591 22#include <Message_Messenger.hxx>
42cf5bc1 23#include <Standard_Type.hxx>
24#include <TDataXtd_Placement.hxx>
25#include <TDF_Attribute.hxx>
26
92efcf78 27IMPLEMENT_STANDARD_RTTIEXT(BinMDataXtd_PlacementDriver,BinMDF_ADriver)
28
7fd59977 29//=======================================================================
30//function : BinMDataXtd_PlacementDriver
31//purpose :
32//=======================================================================
7fd59977 33BinMDataXtd_PlacementDriver::BinMDataXtd_PlacementDriver
83ae3591 34 (const Handle(Message_Messenger)& theMsgDriver)
7fd59977 35 : BinMDF_ADriver (theMsgDriver, STANDARD_TYPE(TDataXtd_Placement)->Name())
36{
37}
38
39//=======================================================================
40//function : NewEmpty
41//purpose :
42//=======================================================================
43
44Handle(TDF_Attribute) BinMDataXtd_PlacementDriver::NewEmpty() const
45{
46 return new TDataXtd_Placement();
47}
48
49//=======================================================================
50//function : Paste
51//purpose : persistent -> transient (retrieve)
52//=======================================================================
53
54Standard_Boolean BinMDataXtd_PlacementDriver::Paste
55 (const BinObjMgt_Persistent&,
56 const Handle(TDF_Attribute)&,
57 BinObjMgt_RRelocationTable& ) const
58{return Standard_True;}
59
60//=======================================================================
61//function : Paste
62//purpose : transient -> persistent (store)
63//=======================================================================
64
65void BinMDataXtd_PlacementDriver::Paste (const Handle(TDF_Attribute)&,
66 BinObjMgt_Persistent&,
67 BinObjMgt_SRelocationTable& ) const
68{}
69
70