#ifndef Patcher_H #define Patcher_H #include #include #include #include #include using namespace Framework; class Patcher : public virtual ReferenceCounter { private: HMODULE updateDll; UpdaterV *updater; bool läuft; public: // Konstruktor Patcher(); // Destruktor ~Patcher(); // nicht constant bool update( int dateiGruppe, bool *abbruch, FBalken *fortschritt, TextFeld *status, Text *zError ); // constant bool läuftPatch() const; int getDownload() const; }; #endif