0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / BinMXCAFDoc / BinMXCAFDoc_ColorDriver.cxx
1 // Created on: 2005-05-17
2 // Created by: Eugeny NAPALKOV
3 // Copyright (c) 2005-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
17 #include <BinMXCAFDoc_ColorDriver.hxx>
18 #include <BinObjMgt_Persistent.hxx>
19 #include <CDM_MessageDriver.hxx>
20 #include <Standard_Type.hxx>
21 #include <TDF_Attribute.hxx>
22 #include <XCAFDoc_Color.hxx>
23
24 //=======================================================================
25 //function :
26 //purpose  : 
27 //=======================================================================
28 BinMXCAFDoc_ColorDriver::BinMXCAFDoc_ColorDriver(const Handle(CDM_MessageDriver)& theMsgDriver)
29      : BinMDF_ADriver(theMsgDriver, STANDARD_TYPE(XCAFDoc_Color)->Name()) {
30 }
31
32 //=======================================================================
33 //function :
34 //purpose  : 
35 //=======================================================================
36 Handle(TDF_Attribute) BinMXCAFDoc_ColorDriver::NewEmpty() const {
37   return new XCAFDoc_Color();
38 }
39
40 //=======================================================================
41 //function :
42 //purpose  : 
43 //=======================================================================
44 Standard_Boolean BinMXCAFDoc_ColorDriver::Paste(const BinObjMgt_Persistent& theSource,
45                                                 const Handle(TDF_Attribute)& theTarget,
46                                                 BinObjMgt_RRelocationTable& /*theRelocTable*/) const 
47 {
48   Handle(XCAFDoc_Color) anAtt = Handle(XCAFDoc_Color)::DownCast(theTarget);
49   Standard_Real R, G, B;
50   Standard_Boolean isOk = theSource >> R >> G >> B;
51   if(isOk) {
52     anAtt->Set(R, G, B);
53   }
54   return isOk;
55 }
56
57 //=======================================================================
58 //function :
59 //purpose  : 
60 //=======================================================================
61 void BinMXCAFDoc_ColorDriver::Paste(const Handle(TDF_Attribute)& theSource,
62                                     BinObjMgt_Persistent& theTarget,
63                                     BinObjMgt_SRelocationTable& /*theRelocTable*/) const
64 {
65   Handle(XCAFDoc_Color) anAtt = Handle(XCAFDoc_Color)::DownCast(theSource);
66   Standard_Real R, G, B;
67   anAtt->GetRGB(R, G, B);
68   theTarget << R << G << B;
69 }
70