1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
// This file is generated by kconfig_compiler from serial.kcfg.
// All changes you do to this file will be lost.
#ifndef KNM_SERIALPERSISTENCE_H
#define KNM_SERIALPERSISTENCE_H
#include <kdebug.h>
#include <kcoreconfigskeleton.h>
#include "settingpersistence.h"
#include "knminternals_export.h"
namespace Knm {
class SerialSetting;
class KNMINTERNALS_EXPORT SerialPersistence : public SettingPersistence
{
public:
SerialPersistence( SerialSetting * setting, KSharedConfig::Ptr config, ConnectionPersistence::SecretStorageMode mode = ConnectionPersistence::Secure);
~SerialPersistence();
void load();
void save();
QMap<QString,QString> secrets() const;
void restoreSecrets(QMap<QString,QString>) const;
};
}
#endif
|