16 lines
298 B
C++
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
|