Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_AttributeComment.hxx
1 //  File   : SALOMEDSClient_AttributeComment.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDSClient_AttributeComment_HeaderFile
6 #define SALOMEDSClient_AttributeComment_HeaderFile
7
8 #include "SALOMEDSClient_definitions.hxx" 
9 #include "SALOMEDSClient_GenericAttribute.hxx" 
10 #include <string>
11
12 class SALOMEDSClient_AttributeComment: 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 #endif