mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-12 01:14:29 -05:00
21 lines
372 B
C++
21 lines
372 B
C++
#include "ui_TorControlWindow.h"
|
|
#include "TorManager.h"
|
|
|
|
class TorControlDialog: public QDialog, public Ui::TorControlDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TorControlDialog(Tor::TorManager *tm,QWidget *parent =NULL);
|
|
|
|
protected slots:
|
|
void showLog();
|
|
void statusChanged();
|
|
void checkForHiddenService();
|
|
|
|
private:
|
|
void setupHiddenService();
|
|
|
|
Tor::TorManager *mTorManager ;
|
|
};
|