Salome HOME
Roll back invalid integration.
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_GenericAttribute.hxx
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_GenericAttribute.hxx
21 //  Author : SERGEY_RUIN
22 //  Module : SALOME
23
24 #ifndef _GENERICIMPL_ATTRIBUTE_HXX_
25 #define _GENERICIMPL_ATTRIBUTE_HXX_
26
27 #include <TDF_Label.hxx>
28 #include <TCollection_AsciiString.hxx>
29 #include <Standard_DefineHandle.hxx>
30 #include <TDF_Attribute.hxx>
31 #include <Standard_GUID.hxx>     
32
33 #include "SALOMEDSImpl_SObject.hxx"
34
35 class Handle(TDF_Attribute);
36 class Handle(TDF_RelocationTable);
37
38
39 DEFINE_STANDARD_HANDLE( SALOMEDSImpl_GenericAttribute, TDF_Attribute )
40
41 class SALOMEDSImpl_GenericAttribute: public TDF_Attribute
42 {
43 protected:
44
45   TCollection_AsciiString _type; //This field must be filled in each attribute that inherits from this class.
46
47 public:
48
49 Standard_EXPORT SALOMEDSImpl_GenericAttribute(const TCollection_AsciiString& theType) 
50 :_type(theType)
51 {}
52
53 Standard_EXPORT virtual TCollection_AsciiString Save() { return ""; } 
54 Standard_EXPORT virtual void Load(const TCollection_AsciiString&) {}
55 Standard_EXPORT virtual TCollection_AsciiString Type();
56 Standard_EXPORT virtual void CheckLocked();
57 Standard_EXPORT TCollection_AsciiString GetClassType() { return _type; }
58 Standard_EXPORT Handle(SALOMEDSImpl_SObject) GetSObject();
59 Standard_EXPORT void SetModifyFlag();
60
61 Standard_EXPORT static char* Impl_GetType(const Handle(TDF_Attribute)& theAttr); 
62 Standard_EXPORT static char* Impl_GetClassType(const Handle(TDF_Attribute)& theAttr);
63 Standard_EXPORT static void Impl_CheckLocked(const Handle(TDF_Attribute)& theAttr);
64
65 public:
66   DEFINE_STANDARD_RTTI( SALOMEDSImpl_GenericAttribute )
67
68 };
69
70
71 #endif