1
0
forked from BRT/arc
arc/automation_script/xml_reader.h
2025-04-25 15:42:51 +04:00

16 lines
298 B
C++

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