You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
401 B

  1. #pragma once
  2. #include "PositionsBackup.h"
  3. #include "RawSdFile.h"
  4. #define POSITIONS_FOLDER "positions"
  5. #define POSITIONS_FILENAME "positions-%05d.csv"
  6. #define POSITIONS_FILENAME_LENGTH 19
  7. using namespace sd;
  8. namespace positions {
  9. namespace backup {
  10. namespace sd {
  11. class SdPositionsBackup : public PositionsBackup {
  12. private:
  13. public:
  14. void setup();
  15. void backup();
  16. };
  17. }
  18. }
  19. }