Updater.h 548 B

12345678910111213141516171819202122232425262728
  1. #ifndef Updater_H
  2. #define Updater_H
  3. #include <Update.h>
  4. #include <KSGNetwork.h>
  5. using namespace Framework;
  6. class Updater : public UpdaterV
  7. {
  8. private:
  9. KSGClient::PatchServerClient *client;
  10. Text *fehler;
  11. public:
  12. // Konstruktor
  13. Updater( KSGClient::PatchServerClient *psc );
  14. // Destruktor
  15. ~Updater();
  16. // nicht constant
  17. virtual int getNextDateiGruppe( Text *zDgPfad );
  18. virtual int update( UpdateParams *zParams );
  19. // constant
  20. virtual char *getError() const;
  21. virtual int getDownload() const;
  22. };
  23. #endif