| 40 | #include <vector> |
| 41 | |
| 42 | struct System_error { |
| 43 | std::string action; |
| 44 | std::string target; |
| 45 | int error; |
| 46 | |
| 47 | System_error (const std::string& a, const std::string& t, int e) : action(a), target(t), error(e) { } |
| 48 | |
| 49 | std::string message () const; |
| 50 | }; |
| 51 | |
| 52 | class temp_fstream : public std::fstream { |
| 53 | std::string filename; |
no outgoing calls
no test coverage detected