mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 16:10:33 +03:00
23 lines
359 B
C
23 lines
359 B
C
|
#ifndef SAVER_H
|
||
|
#define SAVER_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <QObject>
|
||
|
#include <QString>
|
||
|
|
||
|
class Saver : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Saver();
|
||
|
//false iff failures
|
||
|
virtual bool save(const bool focusOnTunnel, const std::string& tunnelNameToFocus)=0;
|
||
|
|
||
|
signals:
|
||
|
void reloadTunnelsConfigAndUISignal(const QString);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // SAVER_H
|