mirror of
https://github.com/PurpleI2P/i2pd-qt.git
synced 2025-02-01 01:04:39 +00:00
13 lines
305 B
C++
13 lines
305 B
C++
#ifndef TUNNELSPAGEUPDATELISTENER_H
|
|
#define TUNNELSPAGEUPDATELISTENER_H
|
|
|
|
class TunnelConfig;
|
|
|
|
class TunnelsPageUpdateListener {
|
|
public:
|
|
virtual void updated(std::string oldName, TunnelConfig* tunConf)=0;
|
|
virtual void needsDeleting(std::string oldName)=0;
|
|
};
|
|
|
|
#endif // TUNNELSPAGEUPDATELISTENER_H
|