您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
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. }