| 50 | }; |
| 51 | |
| 52 | class temp_fstream : public std::fstream { |
| 53 | std::string filename; |
| 54 | public: |
| 55 | ~temp_fstream () { close(); } |
| 56 | |
| 57 | void open (std::ios_base::openmode); |
| 58 | void close (); |
| 59 | }; |
| 60 | |
| 61 | void mkdir_parent (const std::string& path); // Create parent directories of path, __but not path itself__ |
| 62 | std::string our_exe_path (); |
nothing calls this directly
no outgoing calls
no test coverage detected