7 #ifndef PRIVPOINTLOC_FILESYSTEM_H 8 #define PRIVPOINTLOC_FILESYSTEM_H 17 void open_output_stream();
18 void open_output_stream(
const std::ios_base::openmode &);
19 std::ofstream &get_output_stream();
20 void close_output_stream();
21 void open_input_stream();
22 void open_input_stream(
const std::ios_base::openmode &);
23 std::ifstream &get_input_stream();
24 void close_input_stream();
27 std::string filesystem_path;
28 std::ifstream input_file_stream;
29 std::ofstream output_file_stream;
32 #endif //PRIVPOINTLOC_FILESYSTEM_H Definition: FileSystem.h:13