0031939: Coding - correction of spelling errors in comments [part 10]
[occt.git] / src / StdPersistent / StdPersistent_PPrsStd.cxx
1 // Copyright (c) 2015 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 #include <StdPersistent_PPrsStd.hxx>
15
16
17 //=======================================================================
18 //function : Import
19 //purpose  : Import transient attribute from the persistent data
20 //=======================================================================
21 void StdPersistent_PPrsStd::AISPresentation::Import
22   (const Handle(TDataXtd_Presentation)& theAttribute) const
23 {
24   theAttribute->SetDisplayed (myIsDisplayed);
25
26   Handle(TCollection_HExtendedString) aDriverGUID = myDriverGUID->ExtString();
27   if (aDriverGUID)
28     theAttribute->SetDriverGUID (
29       Standard_GUID (aDriverGUID->String().ToExtString()));
30
31   if (myColor != -1)
32     theAttribute->SetColor
33       (static_cast<Quantity_NameOfColor> ((Standard_Integer)myColor));
34   else
35     theAttribute->UnsetColor();
36
37   if (myMaterial != -1)
38     theAttribute->SetMaterialIndex (myMaterial);
39   else
40     theAttribute->UnsetMaterial();
41  
42   if (myTransparency != -1.)
43     theAttribute->SetTransparency (myTransparency);
44   else
45     theAttribute->UnsetTransparency();
46  
47   if (myWidth != -1.)
48     theAttribute->SetWidth (myWidth);
49   else
50     theAttribute->UnsetWidth();
51 }
52
53 //=======================================================================
54 //function : Import
55 //purpose  : Import transient attribute from the persistent data
56 //=======================================================================
57 void StdPersistent_PPrsStd::AISPresentation_1::Import
58   (const Handle(TDataXtd_Presentation)& theAttribute) const
59 {
60   AISPresentation::Import (theAttribute);
61   theAttribute->SetMode (myMode);
62 }