Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_AttributeFileType.hxx
1 //  File   : SALOMEDS_AttributeFileType.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributeFileType_HeaderFile
6 #define SALOMEDS_AttributeFileType_HeaderFile
7
8 #include "SALOMEDSClient_AttributeFileType.hxx"
9 #include "SALOMEDS_GenericAttribute.hxx"
10 #include "SALOMEDSImpl_AttributeFileType.hxx"
11
12 // IDL headers
13 #include <SALOMEconfig.h>
14 #include CORBA_SERVER_HEADER(SALOMEDS)
15 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
16
17 class SALOMEDS_AttributeFileType: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributeFileType
18 {
19 public:  
20   SALOMEDS_AttributeFileType(const Handle(SALOMEDSImpl_AttributeFileType)& theAttr);
21   SALOMEDS_AttributeFileType(SALOMEDS::AttributeFileType_ptr theAttr);
22   ~SALOMEDS_AttributeFileType();
23
24   virtual std::string Value();
25   virtual void SetValue(const std::string& value);
26 };
27
28 #endif