hydrobricks
Loading...
Searching...
No Matches
Hydrobricks.h
1#ifndef HYDROBRICKS_APP_H
2#define HYDROBRICKS_APP_H
3
4#include "Includes.h"
5
6struct CliArgs {
7 string modelFile;
8 string parametersFile;
9 string basinFile;
10 string dataFile;
11 string outputPath;
12 string startDate;
13 string endDate;
14};
15
24bool ParseArgs(int argc, char** argv, CliArgs& args);
25
32int RunModel(const CliArgs& args);
33
34#endif // HYDROBRICKS_APP_H
Definition Hydrobricks.h:6