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.

23 lines
357 B

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