1
0
mirror of https://github.com/PurpleI2P/i2pd-qt.git synced 2025-02-01 01:04:39 +00:00
i2pd-qt/src/TunnelsPageUpdateListener.h
R4SAS dfd1632b78
import qt code, update paths in project and sources
Signed-off-by: R4SAS <r4sas@i2pmail.org>
2021-01-31 22:52:22 +03:00

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