feather/src/dialog/OutputInfoDialog.h
2021-10-22 19:19:56 +02:00

30 lines
594 B
C++

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef FEATHER_OUTPUTINFODIALOG_H
#define FEATHER_OUTPUTINFODIALOG_H
#include <QDialog>
#include "components.h"
#include "libwalletqt/Coins.h"
#include "libwalletqt/CoinsInfo.h"
namespace Ui {
class OutputInfoDialog;
}
class OutputInfoDialog : public WindowModalDialog
{
Q_OBJECT
public:
explicit OutputInfoDialog(CoinsInfo *cInfo, QWidget *parent = nullptr);
~OutputInfoDialog() override;
private:
QScopedPointer<Ui::OutputInfoDialog> ui;
};
#endif //FEATHER_OUTPUTINFODIALOG_H