You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/dialog/outputinfodialog.h

29 lines
541 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef WOWLET_OUTPUTINFODIALOG_H
#define WOWLET_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 //WOWLET_OUTPUTINFODIALOG_H