GPLIB++
RecInvConf.h
Go to the documentation of this file.
1 //============================================================================
2 // Name : RecInvConf.h
3 // Author : Apr 7, 2010
4 // Version :
5 // Copyright : 2010, mmoorkamp
6 //============================================================================
7 
8 
9 #ifndef RECINVCONF_H_
10 #define RECINVCONF_H_
11 
12 #include <fstream>
13 #include <string>
14 
15 namespace gplib
16  {
17 
18  class RecInvConf
19  {
20  public:
21  std::string recinfofile;
22  std::string recmethod;
23  bool normrec;
25  double starttime;
26  double endtime;
27  void GetData(std::ifstream &instream);
28  RecInvConf();
29  virtual ~RecInvConf();
30  };
31 
32  }
33 
34 #endif /* RECINVCONF_H_ */
std::string recmethod
Definition: RecInvConf.h:22
void GetData(std::ifstream &instream)
Definition: RecInvConf.cpp:25
std::string recinfofile
Definition: RecInvConf.h:21
virtual ~RecInvConf()
Definition: RecInvConf.cpp:20