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 regels
430 B

  1. #pragma once
  2. #include "PositionsBackup.h"
  3. #include "Time2.h"
  4. #include "Positions.h"
  5. namespace positions {
  6. namespace backup {
  7. namespace net {
  8. class NetworkPositionsBackup : public PositionsBackup {
  9. private:
  10. bool isBackupNeeded(bool forPrepare);
  11. bool appendPosition(PositionEntry &entry);
  12. void appendPositions();
  13. public:
  14. void setup();
  15. void prepare();
  16. void backup(bool force);
  17. };
  18. }
  19. }
  20. }