wowlet/src/dialog/WalletCacheDebugDialog.h

31 lines
613 B
C
Raw Permalink Normal View History

2021-01-25 16:38:04 +00:00
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
2021-03-30 09:52:29 +00:00
#ifndef WOWLET_WALLETCACHEDEBUGDIALOG_H
#define WOWLET_WALLETCACHEDEBUGDIALOG_H
2021-01-25 16:38:04 +00:00
#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;
};
2021-03-30 09:52:29 +00:00
#endif //WOWLET_WALLETCACHEDEBUGDIALOG_H