Implemented `GetCardInfoScript`, `GetProfileInfoScript`, and `GetLastTransactionsScript` to automate data extraction workflows for Ozon platform. Includes support for XML parsing, ad banner handling, card navigation, profile parsing, and transaction retrieval. Added related asset files.
14 lines
245 B
C++
14 lines
245 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
class ErrorWindow final : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ErrorWindow(const QString &errorMessage, bool showRetry = false, QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void retryRequested();
|
|
};
|