Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
IncludeManager.hpp
Go to the documentation of this file.
1#ifndef INCLUDE_MANAGER_H
2#define INCLUDE_MANAGER_H
3
4#include <fstream>
5
26public:
36 void addIncludes(std::ofstream& outputFile) {
37 outputFile << "#include <fstream>\n";
38 outputFile << "#include <stdexcept>\n";
39 outputFile << "#include <string>\n";
40 outputFile << "#include \"csv_helper.h\"\n";
41 }
42};
43
44#endif
Manages insertion of required #include directives.
void addIncludes(std::ofstream &outputFile)
Writes the required #include directives to the output stream.