Salome HOME
Merging from BR_DEBUG_3_2_0b1
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeFileType.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDSImpl_AttributeFileType.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_AttributeFileType.hxx"
25
26 using namespace std;
27
28 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeFileType, SALOMEDSImpl_GenericAttribute )
29 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeFileType, SALOMEDSImpl_GenericAttribute )
30
31 //=======================================================================
32 //function : GetID
33 //purpose  : 
34 //=======================================================================
35
36 const Standard_GUID& SALOMEDSImpl_AttributeFileType::GetID () 
37 {
38   static Standard_GUID SALOMEDSImpl_AttributeFileTypeID ("0181B525-3F15-4ab2-9DE3-5E2F54B5F340");
39   return SALOMEDSImpl_AttributeFileTypeID;
40 }
41
42
43
44 //=======================================================================
45 //function : Set
46 //purpose  : 
47 //=======================================================================
48
49 Handle(SALOMEDSImpl_AttributeFileType) SALOMEDSImpl_AttributeFileType::Set (const TDF_Label& L,
50                                                                             const TCollection_ExtendedString& S) 
51 {
52
53   Handle(SALOMEDSImpl_AttributeFileType) A;
54   if (!L.FindAttribute(SALOMEDSImpl_AttributeFileType::GetID(),A)) {
55     A = new  SALOMEDSImpl_AttributeFileType(); 
56     L.AddAttribute(A);
57   }
58   
59   A->SetValue (S); 
60   return A;
61 }
62
63
64 //=======================================================================
65 //function : constructor
66 //purpose  : 
67 //=======================================================================
68 SALOMEDSImpl_AttributeFileType::SALOMEDSImpl_AttributeFileType()
69 :SALOMEDSImpl_GenericAttribute("AttributeFileType")
70 {
71 }
72
73 //=======================================================================
74 //function : SetValue
75 //purpose  :
76 //=======================================================================
77 void SALOMEDSImpl_AttributeFileType::SetValue (const TCollection_ExtendedString& S)
78 {
79   CheckLocked();
80
81   if(myString == S) return;
82
83   Backup();
84
85   myString = S;
86
87   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
88 }
89
90 //=======================================================================
91 //function : ID
92 //purpose  : 
93 //=======================================================================
94
95 const Standard_GUID& SALOMEDSImpl_AttributeFileType::ID () const { return GetID(); }
96
97
98 //=======================================================================
99 //function : NewEmpty
100 //purpose  : 
101 //=======================================================================
102
103 Handle(TDF_Attribute) SALOMEDSImpl_AttributeFileType::NewEmpty () const
104 {  
105   return new SALOMEDSImpl_AttributeFileType(); 
106 }
107
108 //=======================================================================
109 //function : Restore
110 //purpose  : 
111 //=======================================================================
112
113 void SALOMEDSImpl_AttributeFileType::Restore(const Handle(TDF_Attribute)& with) 
114 {
115   myString = Handle(SALOMEDSImpl_AttributeFileType)::DownCast (with)->Value ();
116 }
117
118 //=======================================================================
119 //function : Paste
120 //purpose  : 
121 //=======================================================================
122
123 void SALOMEDSImpl_AttributeFileType::Paste (const Handle(TDF_Attribute)& into,
124                                             const Handle(TDF_RelocationTable)& RT) const
125 {
126   Handle(SALOMEDSImpl_AttributeFileType)::DownCast (into)->SetValue (myString);
127 }
128