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

33 lines
543 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
3 years ago
#ifndef WOWLET_TORINFODIALOG_H
#define WOWLET_TORINFODIALOG_H
#include <QDialog>
#include "appcontext.h"
namespace Ui {
class TorInfoDialog;
}
class TorInfoDialog : public QDialog
{
Q_OBJECT
public:
explicit TorInfoDialog(AppContext *ctx, QWidget *parent = nullptr);
~TorInfoDialog() override;
public slots:
void onLogsUpdated();
private:
Ui::TorInfoDialog *ui;
AppContext *m_ctx;
};
3 years ago
#endif //WOWLET_TORINFODIALOG_H