mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-10 12:54:46 +00:00
31 lines
616 B
C
31 lines
616 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020-2021, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_WALLETCACHEDEBUGDIALOG_H
|
||
|
#define FEATHER_WALLETCACHEDEBUGDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "appcontext.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class WalletCacheDebugDialog;
|
||
|
}
|
||
|
|
||
|
class WalletCacheDebugDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit WalletCacheDebugDialog(AppContext *ctx, QWidget *parent = nullptr);
|
||
|
~WalletCacheDebugDialog() override;
|
||
|
|
||
|
private:
|
||
|
void setOutput(const QString &output);
|
||
|
Ui::WalletCacheDebugDialog *ui;
|
||
|
AppContext *m_ctx;
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif //FEATHER_WALLETCACHEDEBUGDIALOG_H
|