.. _program_listing_file_Src_GraphicsEngineOpenGL_util_File.hpp: Program Listing for File File.hpp ================================= |exhale_lsh| :ref:`Return to documentation for file ` (``Src/GraphicsEngineOpenGL/util/File.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include class File { public: explicit File(const std::string &file_location); std::string read(); ~File(); private: std::string file_location; std::string makePathsWithBlanksPossible(const std::string &file_location_with_possible_blanks); };