Salome HOME
Fix problem with waiting SALOMEDS_Server:
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeIOR.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : SALOMEDSImpl_AttributeIOR.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDSImpl_AttributeIOR.hxx"
28 #include "SALOMEDSImpl_Study.hxx"
29
30 //=======================================================================
31 //function : GetID
32 //purpose  : 
33 //=======================================================================
34
35 const std::string& SALOMEDSImpl_AttributeIOR::GetID () 
36 {
37   static std::string SALOMEDSImpl_AttributeIORID ("92888E01-7074-11d5-A690-0800369C8A03");
38   return SALOMEDSImpl_AttributeIORID;
39 }
40
41 //=======================================================================
42 //function : Set
43 //purpose  : 
44 //=======================================================================
45
46 SALOMEDSImpl_AttributeIOR* SALOMEDSImpl_AttributeIOR::Set (const DF_Label&    L,
47                                                            const std::string& S) 
48 {
49   SALOMEDSImpl_AttributeIOR* A = NULL;
50   if (!(A=(SALOMEDSImpl_AttributeIOR*)L.FindAttribute(SALOMEDSImpl_AttributeIOR::GetID()))) {
51     A = new  SALOMEDSImpl_AttributeIOR(); 
52     L.AddAttribute(A);
53   }
54
55   A->SetValue(S); 
56   return A;
57 }
58
59 //=======================================================================
60 //function : SetValue
61 //purpose  : 
62 //=======================================================================
63 void SALOMEDSImpl_AttributeIOR::SetValue(const std::string& theValue)
64 {
65   CheckLocked();
66
67   Backup();
68
69   myString = theValue;
70   
71   //Reason = 5 means that IOR attribute updated
72   //Used in the gui module to detect that IOR attribure was assigned to the object
73   SetModifyFlag(5);
74 }
75
76 //=======================================================================
77 //function : Value
78 //purpose  : 
79 //=======================================================================
80 std::string SALOMEDSImpl_AttributeIOR::Value() const
81 {
82   return myString;
83 }
84
85 //=======================================================================
86 //function : constructor
87 //purpose  : 
88 //=======================================================================
89 SALOMEDSImpl_AttributeIOR::SALOMEDSImpl_AttributeIOR()
90 :SALOMEDSImpl_GenericAttribute("AttributeIOR")
91 {
92 }
93
94 SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR()
95 {
96 }
97
98 //=======================================================================
99 //function : ID
100 //purpose  : 
101 //=======================================================================
102
103 const std::string& SALOMEDSImpl_AttributeIOR::ID () const { return GetID(); }
104
105
106 //=======================================================================
107 //function : NewEmpty
108 //purpose  : 
109 //=======================================================================
110
111 DF_Attribute* SALOMEDSImpl_AttributeIOR::NewEmpty () const
112 {  
113   return new SALOMEDSImpl_AttributeIOR(); 
114 }
115
116 //=======================================================================
117 //function : Restore
118 //purpose  : 
119 //=======================================================================
120
121 void SALOMEDSImpl_AttributeIOR::Restore( DF_Attribute* with) 
122 {
123   myString = dynamic_cast<SALOMEDSImpl_AttributeIOR*>(with)->Value();
124   return;
125 }
126
127 //=======================================================================
128 //function : Paste
129 //purpose  : 
130 //=======================================================================
131
132 void SALOMEDSImpl_AttributeIOR::Paste (DF_Attribute* into)
133 {
134   dynamic_cast<SALOMEDSImpl_AttributeIOR*>(into)->SetValue(myString);
135 }
136