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