X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPlugins%2FMEDReader%2FIO%2FMEDTimeReq.hxx;h=40b9d6d2f00e627113b60cf06f7452bbc385b2bc;hb=234555062143bd5a1a28f26b58c657008685c13f;hp=ea4359aecace60df7369631fe9eec9e45719bd67;hpb=e32938b374fc9583c1dc3a69a3b3ec23e7c49b3e;p=modules%2Fparavis.git diff --git a/src/Plugins/MEDReader/IO/MEDTimeReq.hxx b/src/Plugins/MEDReader/IO/MEDTimeReq.hxx index ea4359ae..40b9d6d2 100644 --- a/src/Plugins/MEDReader/IO/MEDTimeReq.hxx +++ b/src/Plugins/MEDReader/IO/MEDTimeReq.hxx @@ -24,7 +24,9 @@ #include #include -class MEDTimeReq +#include "MEDLoaderForPV.h" + +class MEDLOADERFORPV_EXPORT MEDTimeReq { public: virtual int size() const = 0; @@ -36,7 +38,7 @@ public: virtual ~MEDTimeReq(); }; -class MEDStdTimeReq : public MEDTimeReq +class MEDLOADERFORPV_EXPORT MEDStdTimeReq : public MEDTimeReq { public: MEDStdTimeReq(int timeReq); @@ -52,10 +54,10 @@ private: int _time_req; }; -class MEDModeTimeReq : public MEDTimeReq +class MEDLOADERFORPV_EXPORT MEDModeTimeReq : public MEDTimeReq { public: - MEDModeTimeReq(const std::vector& v); + MEDModeTimeReq(const std::vector& v, const std::vector& ts); ~MEDModeTimeReq(); int size() const; int getCurrent() const; @@ -65,6 +67,7 @@ public: void operator++() const; private: std::vector _v; + std::vector _ts; mutable int _it; mutable int _sz; };