mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03: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
|