Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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