#pragma once
#include "MED_Wrapper.hxx"
+#include "MED_WrapperDef.hxx"
namespace MED
{
virtual const TIdt& Id() const = 0;
};
- class MEDIDTHoder : public TFileInternal
+ class MEDWRAPPER_EXPORT MEDIDTHoder : public TFileInternal
{
protected:
MEDIDTHoder(bool *isClosedStatus = nullptr):_isClosedStatus(isClosedStatus) { }
bool *_isClosedStatus = nullptr;
};
- class TFileDecorator : public TFileInternal
+ class MEDWRAPPER_EXPORT TFileDecorator : public TFileInternal
{
public:
TFileDecorator(TFileInternal *effective):_effective(effective) { }
TFileInternal *_effective = nullptr;
};
- class TMemFile : public MEDIDTHoder
+ class MEDWRAPPER_EXPORT TMemFile : public MEDIDTHoder
{
public:
TMemFile(bool* isClosedStatus = nullptr):MEDIDTHoder(isClosedStatus) { }
med_memfile memfile = MED_MEMFILE_INIT;
};
- class TFile : public MEDIDTHoder
+ class MEDWRAPPER_EXPORT TFile : public MEDIDTHoder
{
public:
TFile(const std::string& theFileName, TInt theMajor=-1, TInt theMinor=-1);