mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-22 15:31:41 +00:00
19 lines
298 B
C
19 lines
298 B
C
|
#ifndef _NIX_PREFSSTORE_H
|
||
|
#define _NIX_PREFSSTORE_H
|
||
|
|
||
|
#include "prefsstore.h"
|
||
|
|
||
|
class NixPrefs : public PrefsStore {
|
||
|
public:
|
||
|
NixPrefs();
|
||
|
virtual ~NixPrefs();
|
||
|
|
||
|
virtual bool readPrefs(prefs_t *readTo);
|
||
|
virtual bool writePrefs(prefs_t *newPrefs);
|
||
|
|
||
|
private:
|
||
|
char *prefsFilePath;
|
||
|
};
|
||
|
|
||
|
#endif
|