Version: 8.3.0
MEDTimeReq.hxx
Go to the documentation of this file.
1 // Copyright (C) 2010-2016 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, or (at your option) any later version.
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 #include "MEDLoaderForPV.h"
28 
30 {
31 public:
32  virtual int size() const = 0;
33  virtual void setNumberOfTS(int nbOfTS) const = 0;
34  virtual std::string buildName(const std::string& name) const = 0;
35  virtual void initIterator() const = 0;
36  virtual int getCurrent() const = 0;
37  virtual void operator++() const = 0;
38  virtual ~MEDTimeReq();
39 };
40 
42 {
43 public:
44  MEDStdTimeReq(int timeReq);
45  int size() const;
46  int getCurrent() const;
47  void initIterator() const;
48  void setNumberOfTS(int nbOfTS) const;
49  std::string buildName(const std::string& name) const;
50  void operator++() const;
51 public:
52  ~MEDStdTimeReq();
53 private:
54  int _time_req;
55 };
56 
58 {
59 public:
60  MEDModeTimeReq(const std::vector<bool>& v, const std::vector<double>& ts);
61  ~MEDModeTimeReq();
62  int size() const;
63  int getCurrent() const;
64  void initIterator() const;
65  void setNumberOfTS(int nbOfTS) const;
66  std::string buildName(const std::string& name) const;
67  void operator++() const;
68 private:
69  std::vector<bool> _v;
70  std::vector<double> _ts;
71  mutable int _it;
72  mutable int _sz;
73 };
74 
75 #endif