1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #ifndef IO_PARAMETER_IMPL_H
18 #define IO_PARAMETER_IMPL_H
19
20 #include <string>
21 #include <vector>
22
23 namespace Esfem{
24 namespace Impl{
25 const std::string& project_dir();
26 void dune_fem_parameter_append(int argc, char** argv, const std::string& file);
27 std::string get_gridKey();
28 std::string get_macroGrid();
29 std::string doubleVector_to_string(const std::vector<double>&);
30 void file_check(const std::vector<std::string>& file_list);
31 }
32 }
33
34 #endif