mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-10-31 09:15:51 +00:00
16 lines
277 B
C++
16 lines
277 B
C++
#ifndef _TEENSY_PREFSSTORE_H
|
|
#define _TEENSY_PREFSSTORE_H
|
|
|
|
#include "prefsstore.h"
|
|
|
|
class TeensyPrefs : public PrefsStore {
|
|
public:
|
|
TeensyPrefs();
|
|
virtual ~TeensyPrefs();
|
|
|
|
virtual bool readPrefs(prefs_t *readTo);
|
|
virtual bool writePrefs(prefs_t *newPrefs);
|
|
};
|
|
|
|
#endif
|