Salome HOME
BugID: IPAL9392, modified methods GetRowUnits.
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_AttributeFileType.hxx
1 //  File   : SALOMEDSClient_AttributeFileType.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDSClient_AttributeFileType_HeaderFile
6 #define SALOMEDSClient_AttributeFileType_HeaderFile
7
8 #include "SALOMEDSClient_definitions.hxx" 
9 #include "SALOMEDSClient_GenericAttribute.hxx" 
10 #include <string>
11
12 class SALOMEDSClient_AttributeFileType: public virtual SALOMEDSClient_GenericAttribute
13 {
14 public:
15   virtual std::string Value() = 0;
16   virtual void SetValue(const std::string& value) = 0;
17   
18 };
19
20
21
22 #endif