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