0025266: Debug statements in the source are getting flushed on to the console
[occt.git] / src / BinTObjDrivers / BinTObjDrivers_XYZDriver.cxx
1 // Created on: 2004-11-24
2 // Created by: Michael SAZONOV
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 // The original implementation Copyright: (C) RINA S.p.A
17
18
19 #include <BinTObjDrivers_XYZDriver.hxx>
20 #include <CDM_MessageDriver.hxx>
21 #include <TDF_Attribute.hxx>
22 #include <BinObjMgt_Persistent.hxx>
23 #include <TObj_TXYZ.hxx>
24
25 IMPLEMENT_STANDARD_HANDLE(BinTObjDrivers_XYZDriver,BinMDF_ADriver)
26 IMPLEMENT_STANDARD_RTTIEXT(BinTObjDrivers_XYZDriver,BinMDF_ADriver)
27
28 //=======================================================================
29 //function : BinTObjDrivers_XYZDriver
30 //purpose  : constructor
31 //=======================================================================
32
33 BinTObjDrivers_XYZDriver::BinTObjDrivers_XYZDriver
34                          (const Handle(CDM_MessageDriver)& theMessageDriver)
35 : BinMDF_ADriver( theMessageDriver, NULL)
36 {
37 }
38
39 //=======================================================================
40 //function : NewEmpty
41 //purpose  : Creates a new attribute
42 //=======================================================================
43
44 Handle(TDF_Attribute) BinTObjDrivers_XYZDriver::NewEmpty() const
45 {
46   return new TObj_TXYZ;
47 }
48
49 //=======================================================================
50 //function : Paste
51 //purpose  : Retrieve. Translate the contents of <theSource> and put it
52 //           into <theTarget>.
53 //=======================================================================
54
55 Standard_Boolean BinTObjDrivers_XYZDriver::Paste
56                          (const BinObjMgt_Persistent&  theSource,
57                           const Handle(TDF_Attribute)& theTarget,
58                           BinObjMgt_RRelocationTable&) const
59 {
60   Handle(TObj_TXYZ) aTarget = Handle(TObj_TXYZ)::DownCast(theTarget);
61   Standard_Real aX, aY, aZ;
62   if (! (theSource >> aX >> aY >> aZ))
63     return Standard_False;
64   aTarget->Set (gp_XYZ (aX, aY, aZ));
65   return Standard_True;
66 }
67
68 //=======================================================================
69 //function : Paste
70 //purpose  : Store. Translate the contents of <theSource> and put it
71 //           into <theTarget>
72 //=======================================================================
73
74 void BinTObjDrivers_XYZDriver::Paste
75                          (const Handle(TDF_Attribute)& theSource,
76                           BinObjMgt_Persistent&        theTarget,
77                           BinObjMgt_SRelocationTable&) const
78 {
79   Handle(TObj_TXYZ) aSource = Handle(TObj_TXYZ)::DownCast (theSource);
80   gp_XYZ aXYZ = aSource->Get();
81   theTarget << aXYZ.X() << aXYZ.Y() << aXYZ.Z();
82 }