#ifndef IO_HH #define IO_HH #include namespace io { bool read_all(int fd, std::string* out); bool write_all(int fd, std::string const& in); } // namespace io #endif // IO_HH