Salome HOME
CMake: using newly created macros SALOME_UPDATE_FLAG_AND_LOG_PACKAGE() and SALOME_PAC...
[modules/med.git] / src / MEDCoupling / MEDCouplingRefCountObject.hxx
index ce51360d2ab0ac91d8868c2f4a9a49a7597f17f8..41c340d59abaf748146c60b00add219032b93ac1 100644 (file)
@@ -74,8 +74,8 @@ namespace ParaMEDMEM
   class RefCountObjectOnly
   {
   protected:
-    RefCountObjectOnly();
-    RefCountObjectOnly(const RefCountObjectOnly& other);
+    MEDCOUPLING_EXPORT RefCountObjectOnly();
+    MEDCOUPLING_EXPORT RefCountObjectOnly(const RefCountObjectOnly& other);
   public:
     MEDCOUPLING_EXPORT bool decrRef() const;
     MEDCOUPLING_EXPORT void incrRef() const;
@@ -90,9 +90,9 @@ namespace ParaMEDMEM
   class RefCountObject : public RefCountObjectOnly, public BigMemoryObject
   {
   protected:
-    RefCountObject();
-    RefCountObject(const RefCountObject& other);
-    virtual ~RefCountObject();
+    MEDCOUPLING_EXPORT RefCountObject();
+    MEDCOUPLING_EXPORT RefCountObject(const RefCountObject& other);
+    MEDCOUPLING_EXPORT virtual ~RefCountObject();
   };
 }