mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-25 11:55:54 +00:00
29 lines
539 B
C
29 lines
539 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_OUTPUTINFODIALOG_H
|
||
|
#define FEATHER_OUTPUTINFODIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "libwalletqt/Coins.h"
|
||
|
#include "libwalletqt/CoinsInfo.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class OutputInfoDialog;
|
||
|
}
|
||
|
|
||
|
class OutputInfoDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit OutputInfoDialog(CoinsInfo *cInfo, QWidget *parent = nullptr);
|
||
|
~OutputInfoDialog() override;
|
||
|
|
||
|
private:
|
||
|
Ui::OutputInfoDialog *ui;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //FEATHER_OUTPUTINFODIALOG_H
|