Salome HOME
A patch from Paul RASCLE for: kernel documentation with doxygen, modification on...
[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 //=======================================================================
29 //function : GetID
30 //purpose  : 
31 //=======================================================================
32
33 const std::string& SALOMEDSImpl_AttributeFileType::GetID () 
34 {
35   static std::string SALOMEDSImpl_AttributeFileTypeID ("0181B525-3F15-4ab2-9DE3-5E2F54B5F340");
36   return SALOMEDSImpl_AttributeFileTypeID;
37 }
38
39
40
41 //=======================================================================
42 //function : Set
43 //purpose  : 
44 //=======================================================================
45
46 SALOMEDSImpl_AttributeFileType* SALOMEDSImpl_AttributeFileType::Set (const DF_Label& L,
47                                                                      const std::string& S) 
48 {
49
50   SALOMEDSImpl_AttributeFileType* A = NULL;
51   if (!(A=(SALOMEDSImpl_AttributeFileType*)L.FindAttribute(SALOMEDSImpl_AttributeFileType::GetID()))) {
52     A = new  SALOMEDSImpl_AttributeFileType(); 
53     L.AddAttribute(A);
54   }
55   
56   A->SetValue (S); 
57   return A;
58 }
59
60
61 //=======================================================================
62 //function : constructor
63 //purpose  : 
64 //=======================================================================
65 SALOMEDSImpl_AttributeFileType::SALOMEDSImpl_AttributeFileType()
66 :SALOMEDSImpl_GenericAttribute("AttributeFileType")
67 {
68 }
69
70 //=======================================================================
71 //function : SetValue
72 //purpose  :
73 //=======================================================================
74 void SALOMEDSImpl_AttributeFileType::SetValue (const std::string& S)
75 {
76   CheckLocked();
77
78   if(myString == S) return;
79
80   Backup();
81
82   myString = S;
83
84   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
85 }
86
87 //=======================================================================
88 //function : ID
89 //purpose  : 
90 //=======================================================================
91
92 const std::string& SALOMEDSImpl_AttributeFileType::ID () const { return GetID(); }
93
94
95 //=======================================================================
96 //function : NewEmpty
97 //purpose  : 
98 //=======================================================================
99
100 DF_Attribute* SALOMEDSImpl_AttributeFileType::NewEmpty () const
101 {  
102   return new SALOMEDSImpl_AttributeFileType(); 
103 }
104
105 //=======================================================================
106 //function : Restore
107 //purpose  : 
108 //=======================================================================
109
110 void SALOMEDSImpl_AttributeFileType::Restore(DF_Attribute* with) 
111 {
112   myString = dynamic_cast<SALOMEDSImpl_AttributeFileType*>(with)->Value ();
113 }
114
115 //=======================================================================
116 //function : Paste
117 //purpose  : 
118 //=======================================================================
119
120 void SALOMEDSImpl_AttributeFileType::Paste (DF_Attribute* into)
121 {
122   dynamic_cast<SALOMEDSImpl_AttributeFileType*>(into)->SetValue (myString);
123 }
124