17 lines
365 B
C++
17 lines
365 B
C++
#ifndef PERSISTENCE_H
|
|
#define PERSISTENCE_H
|
|
|
|
#include "TrackerTypes.h"
|
|
#include "config.h"
|
|
|
|
class Persistence {
|
|
public:
|
|
static void saveSequence(bool quiet);
|
|
static bool loadSequence();
|
|
static void savePatch(int bank, int slot);
|
|
static void loadPatch(int bank, int slot, Step (*scratchBuffer)[NUM_STEPS]);
|
|
static void factoryReset();
|
|
};
|
|
|
|
#endif
|