1
0
forked from BRT/arc
arc/views/widget/loader/ErrorWindow.h
slava 91f8e96fa6 Add Ozon scripts for retrieving card info, profile details, and transaction history
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.
2026-02-27 10:15:19 +07:00

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();
};