#ifndef INPUT_H #define INPUT_H #include #include std::string ReadFile(const std::string &filepath); class Lines { private: std::string_view text_; public: explicit Lines(std::string_view text) : text_(text) {} std::optional Next(); }; #endif