#pragma once /*! * @file StrFileReader.h * Utility class to read a .STR file and extract the full file name. */ #include #include #include "common/common_types.h" class StrFileReader { public: explicit StrFileReader(const std::string& file_path); int chunk_count() const; const std::vector& get_chunk(int idx) const; std::string get_full_name(const std::string& short_name) const; private: std::vector> m_chunks; };