mirror of
https://github.com/feather-wallet/feather.git
synced 2025-02-03 03:36:46 +00:00
32 lines
594 B
C++
32 lines
594 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
|
|
|
#ifndef FEATHER_PAGENETWORKTOR_H
|
|
#define FEATHER_PAGENETWORKTOR_H
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "appcontext.h"
|
|
|
|
namespace Ui {
|
|
class PageNetworkTor;
|
|
}
|
|
|
|
class PageNetworkTor : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PageNetworkTor(QWidget *parent = nullptr);
|
|
void initializePage() override;
|
|
bool validatePage() override;
|
|
int nextId() const override;
|
|
|
|
signals:
|
|
void initialNetworkConfigured();
|
|
|
|
private:
|
|
Ui::PageNetworkTor *ui;
|
|
};
|
|
|
|
#endif //FEATHER_PAGENETWORKTOR_H
|