#pragma once #include namespace FileIO // namespaces are just so neat { std::string read_all(const std::string& filename); void write_all(const std::string& filename, const std::string& contents); }