mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
34 lines
602 B
C++
34 lines
602 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
|
|
|
#ifndef FEATHER_OUTPUTSWEEPDIALOG_H
|
|
#define FEATHER_OUTPUTSWEEPDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class OutputSweepDialog;
|
|
}
|
|
|
|
class OutputSweepDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OutputSweepDialog(QWidget *parent = nullptr);
|
|
~OutputSweepDialog() override;
|
|
|
|
QString address();
|
|
bool churn() const;
|
|
int outputs() const;
|
|
|
|
private:
|
|
Ui::OutputSweepDialog *ui;
|
|
|
|
QString m_address;
|
|
bool m_churn;
|
|
int m_outputs;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_OUTPUTSWEEPDIALOG_H
|