mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-22 00:59:08 +01:00
21 lines
512 B
C++
21 lines
512 B
C++
#ifndef CLIENTTUNNELPANE_H
|
|
#define CLIENTTUNNELPANE_H
|
|
|
|
#include "QGridLayout"
|
|
|
|
#include "TunnelPane.h"
|
|
|
|
class ServerTunnelPane;
|
|
class TunnelPane;
|
|
|
|
class ClientTunnelPane : public TunnelPane {
|
|
public:
|
|
ClientTunnelPane();
|
|
virtual ServerTunnelPane* asServerTunnelPane();
|
|
virtual ClientTunnelPane* asClientTunnelPane();
|
|
void deleteClientTunnelForm(QGridLayout *tunnelsFormGridLayout);
|
|
protected slots:
|
|
virtual void setGroupBoxTitle(const QString & title){}//TODO
|
|
};
|
|
|
|
#endif // CLIENTTUNNELPANE_H
|