#ifndef XML_READER_H #define XML_READER_H #include struct UiElement { int x1, y1, x2, y2; QString text; QString resourceId; }; std::vector parseUiDumpUsingQXml(const QString &filePath); bool dumpAndPullUiXml(const std::string& localPath); #endif //XML_READER_H