mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-26 04:15:55 +00:00
27 lines
493 B
C++
27 lines
493 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
|
|
|
#ifndef FEATHER_BALANCEDIALOG_H
|
|
#define FEATHER_BALANCEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "libwalletqt/Wallet.h"
|
|
|
|
namespace Ui {
|
|
class BalanceDialog;
|
|
}
|
|
|
|
class BalanceDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BalanceDialog(QWidget *parent, Wallet *wallet);
|
|
~BalanceDialog() override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::BalanceDialog> ui;
|
|
};
|
|
|
|
#endif //FEATHER_BALANCEDIALOG_H
|