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