#pragma once #include #include #include struct EXH; struct ExcelDataPagination; struct Column { std::string data; }; struct Row { std::vector data; }; struct EXD { std::vector rows; }; std::string getEXDFilename(EXH& exh, std::string_view name, std::string_view lang, ExcelDataPagination& page); EXD readEXD(EXH& exh, std::string_view path, ExcelDataPagination& page);