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

24 行
356 B

  1. #pragma once
  2. #include "PositionsBackup.h"
  3. #include "RawSdFile.h"
  4. #define POSITIONS_CONFIG_FILENAME "positions.config"
  5. using namespace sd;
  6. namespace positions {
  7. namespace backup {
  8. namespace sd {
  9. class SdPositionsBackup : public PositionsBackup {
  10. private:
  11. RawSdFile * _config;
  12. public:
  13. void setup();
  14. void backup();
  15. };
  16. }
  17. }
  18. }