completed requests to ofd.ru
This commit is contained in:
30
solvecaptchadialog.h
Normal file
30
solvecaptchadialog.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef SOLVECAPTCHADIALOG_H
|
||||
#define SOLVECAPTCHADIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class SolveCaptchaDialog;
|
||||
}
|
||||
|
||||
class SolveCaptchaDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SolveCaptchaDialog(QWidget *parent = nullptr);
|
||||
~SolveCaptchaDialog();
|
||||
|
||||
|
||||
signals:
|
||||
void solvedCaptcha(std::string);
|
||||
|
||||
|
||||
private:
|
||||
Ui::SolveCaptchaDialog *ui;
|
||||
|
||||
private slots:
|
||||
void accept() override;
|
||||
};
|
||||
|
||||
#endif // SOLVECAPTCHADIALOG_H
|
||||
Reference in New Issue
Block a user