mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-23 05:47:17 +01:00
22 lines
512 B
C
22 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
|