Salome HOME
update after merging trhe branches CEA_V3_0_x, OCC_V3_1_0_a1_x, and the main
[modules/med.git] / src / MEDMEM / MEDMEM_RCBase.hxx
1 #ifndef __MEDMEM_RCBASE_HXX__
2 #define __MEDMEM_RCBASE_HXX__
3
4 namespace MEDMEM {
5   
6   class RCBASE {
7   public:
8     virtual void addReference() const = 0;
9     virtual void removeReference() const = 0;
10   };
11
12 }
13
14 #endif