mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@3736 1feff8c3-07ed-0310-ac33-dd36852eb9cd
24 lines
585 B
C++
24 lines
585 B
C++
#if !defined(RUNNER_H_INCLUDED)
|
|
#define RUNNER_H_INCLUDED
|
|
#include <set> // std::set
|
|
#include <string> // std::string
|
|
#include "Parser.h"
|
|
#include "StorageBinList.h"
|
|
class runner
|
|
{
|
|
public:
|
|
runner(void);
|
|
runner(CParser & parser);
|
|
virtual ~runner(void);
|
|
bool Read(CParser & parser);
|
|
StorageBinListItem & Get_cells(void) { return(this->cells); };
|
|
double Get_time_step() { return(this->time_step); };
|
|
double Get_start_time() { return(this->start_time); };
|
|
|
|
protected:
|
|
double time_step;
|
|
double start_time;
|
|
StorageBinListItem cells;
|
|
};
|
|
#endif // !defined(RUNNER_H_INCLUDED)
|