mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-10 21:05:00 +00:00
35 lines
597 B
C
35 lines
597 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, 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
|