#pragma once #include /* Namespace for simple file operations. */ namespace FileIO { /* Helper function to read all of a file's contents. */ std::string read_all(const std::string& filename); /* Helper function to write a string to a file. */ void write_all(const std::string& filename, const std::string& contents); }