1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : SALOMEDSImpl_AttributeExpandable.cxx
24 // Author : Sergey RUIN
27 #include "SALOMEDSImpl_AttributeExpandable.hxx"
29 //=======================================================================
32 //=======================================================================
33 const std::string& SALOMEDSImpl_AttributeExpandable::GetID ()
35 static std::string SALOMEDSImpl_AttributeExpandableID ("12837185-8F52-11d6-A8A3-0001021E8C7F");
36 return SALOMEDSImpl_AttributeExpandableID;
41 //=======================================================================
44 //=======================================================================
45 SALOMEDSImpl_AttributeExpandable* SALOMEDSImpl_AttributeExpandable::Set (const DF_Label& L,
48 SALOMEDSImpl_AttributeExpandable* A = NULL;
49 if (!(A=(SALOMEDSImpl_AttributeExpandable*)L.FindAttribute(SALOMEDSImpl_AttributeExpandable::GetID()))) {
50 A = new SALOMEDSImpl_AttributeExpandable();
54 A->SetExpandable(value);
59 //=======================================================================
60 //function : constructor
62 //=======================================================================
63 SALOMEDSImpl_AttributeExpandable::SALOMEDSImpl_AttributeExpandable()
64 :SALOMEDSImpl_GenericAttribute("AttributeExpandable")
69 //=======================================================================
70 //function : SetExpandable
72 //=======================================================================
73 void SALOMEDSImpl_AttributeExpandable::SetExpandable(const int theValue)
79 (theValue!=0)?myValue=1:myValue=0;
81 SetModifyFlag(); //VSR: Mark the study as being modified, so it could be saved
84 //=======================================================================
87 //=======================================================================
89 const std::string& SALOMEDSImpl_AttributeExpandable::ID () const { return GetID(); }
92 //=======================================================================
95 //=======================================================================
97 DF_Attribute* SALOMEDSImpl_AttributeExpandable::NewEmpty () const
99 return new SALOMEDSImpl_AttributeExpandable();
102 //=======================================================================
105 //=======================================================================
107 void SALOMEDSImpl_AttributeExpandable::Restore(DF_Attribute* with)
109 myValue = dynamic_cast<SALOMEDSImpl_AttributeExpandable*>(with)->IsExpandable ();
112 //=======================================================================
115 //=======================================================================
117 void SALOMEDSImpl_AttributeExpandable::Paste (DF_Attribute* into)
119 dynamic_cast<SALOMEDSImpl_AttributeExpandable*>(into)->SetExpandable (myValue);