// File: BinMDataXtd_PlaneDriver.cxx // Created: Thu May 13 11:59:39 2004 // Author: Sergey ZARITCHNY // Copyright: Open CasCade S.A. 2004 // modified 13.04.2009 Sergey Zaritchny #include #include #include #include #include #include #include #include //======================================================================= //function : BinMDataXtd_PlaneDriver //purpose : //======================================================================= BinMDataXtd_PlaneDriver::BinMDataXtd_PlaneDriver (const Handle(CDM_MessageDriver)& theMsgDriver) : BinMDF_ADriver (theMsgDriver, STANDARD_TYPE(TDataXtd_Plane)->Name()) { } //======================================================================= //function : NewEmpty //purpose : //======================================================================= Handle(TDF_Attribute) BinMDataXtd_PlaneDriver::NewEmpty() const { return new TDataXtd_Plane(); } //======================================================================= //function : Paste //purpose : persistent -> transient (retrieve) //======================================================================= Standard_Boolean BinMDataXtd_PlaneDriver::Paste (const BinObjMgt_Persistent&, const Handle(TDF_Attribute)&, BinObjMgt_RRelocationTable& ) const {return Standard_True;} //======================================================================= //function : Paste //purpose : transient -> persistent (store) //======================================================================= void BinMDataXtd_PlaneDriver::Paste (const Handle(TDF_Attribute)&, BinObjMgt_Persistent&, BinObjMgt_SRelocationTable& ) const {}