mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-10 04:44:52 +00:00
30 lines
594 B
C++
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
|