Updater.h 605 B

1234567891011121314151617181920212223242526272829303132
  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. int ref;
  12. public:
  13. // Konstruktor
  14. Updater( KSGClient::PatchServerClient *psc );
  15. // Destruktor
  16. ~Updater();
  17. // nicht constant
  18. virtual int getNextDateiGruppe( Text *zDgPfad );
  19. virtual int update( UpdateParams *zParams );
  20. // constant
  21. virtual char *getError() const;
  22. virtual int getDownload() const;
  23. // Reference Counting
  24. virtual UpdaterV *getThis();
  25. virtual UpdaterV *release();
  26. };
  27. #endif