feather/src/dialog/OutputInfoDialog.h
2022-02-10 11:26:41 +01:00

30 lines
602 B
C++

// SPDX-License-Identifier: BSD-3-Clause
// SPDX-FileCopyrightText: 2020-2022 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