12345678910111213141516171819202122232425262728 |
- #ifndef Updater_H
- #define Updater_H
- #include <Update.h>
- #include <KSGNetwork.h>
- using namespace Framework;
- class Updater : public UpdaterV
- {
- private:
- KSGClient::PatchServerClient* client;
- Text* fehler;
- public:
- // Konstruktor
- Updater(KSGClient::PatchServerClient* psc);
- // Destruktor
- ~Updater();
- // nicht constant
- virtual int getNextDateiGruppe(Text* zDgPfad);
- virtual int update(UpdateParams* zParams);
- // constant
- virtual const char* getError() const;
- virtual int getDownload() const;
- };
- #endif
|