Salome HOME
Merge branch 'origin/abn/newpy_pv4-1'
[modules/paravis.git] / src / Plugins / MEDReader / IO / MEDTimeReq.hxx
1 // Copyright (C) 2010-2014  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay
20
21 #ifndef __MEDTIMEREQ_HXX__
22 #define __MEDTIMEREQ_HXX__
23
24 #include <string>
25 #include <vector>
26
27 class MEDTimeReq
28 {
29 public:
30   virtual int size() const = 0;
31   virtual void setNumberOfTS(int nbOfTS) const = 0;
32   virtual std::string buildName(const std::string& name) const = 0;
33   virtual void initIterator() const = 0;
34   virtual int getCurrent() const = 0;
35   virtual void operator++() const = 0;
36   virtual ~MEDTimeReq();
37 };
38
39 class MEDStdTimeReq : public MEDTimeReq
40 {
41 public:
42   MEDStdTimeReq(int timeReq);
43   int size() const;
44   int getCurrent() const;
45   void initIterator() const;
46   void setNumberOfTS(int nbOfTS) const;
47   std::string buildName(const std::string& name) const;
48   void operator++() const;
49 public:
50   ~MEDStdTimeReq();
51 private:
52   int _time_req;
53 };
54
55 class MEDModeTimeReq : public MEDTimeReq
56 {
57 public:
58   MEDModeTimeReq(const std::vector<bool>& v);
59   ~MEDModeTimeReq();
60   int size() const;
61   int getCurrent() const;
62   void initIterator() const;
63   void setNumberOfTS(int nbOfTS) const;
64   std::string buildName(const std::string& name) const;
65   void operator++() const;
66 private:
67   std::vector<bool> _v;
68   mutable int _it;
69   mutable int _sz;
70 };
71
72 #endif