25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

23 satır
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. }