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/xmrtoinfodialog.h

29 lines
521 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef FEATHER_XMRTOINFODIALOG_H
#define FEATHER_XMRTOINFODIALOG_H
#include <QDialog>
#include "utils/xmrto.h"
namespace Ui {
class XmrToInfoDialog;
}
class XmrToInfoDialog : public QDialog
{
Q_OBJECT
public:
explicit XmrToInfoDialog(XmrToOrder *oInfo, QWidget *parent = nullptr);
~XmrToInfoDialog() override;
private:
Ui::XmrToInfoDialog *ui;
XmrToOrder *m_oInfo;
};
#endif //FEATHER_XMRTOINFODIALOG_H