diff options
Diffstat (limited to 'gentoobrowse-api/service/maintenance/updatesProcessor.h')
-rw-r--r-- | gentoobrowse-api/service/maintenance/updatesProcessor.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gentoobrowse-api/service/maintenance/updatesProcessor.h b/gentoobrowse-api/service/maintenance/updatesProcessor.h index 4b6891b..48c37a9 100644 --- a/gentoobrowse-api/service/maintenance/updatesProcessor.h +++ b/gentoobrowse-api/service/maintenance/updatesProcessor.h @@ -1,7 +1,7 @@ #ifndef GENTOOBROWSE_API_SERVICE_MAINTENANCE_UPDATESPROC_H #define GENTOOBROWSE_API_SERVICE_MAINTENANCE_UPDATESPROC_H -#include "../maintenanceimpl.h" +#include "abstractFileProcessor.h" #include <connection.h> #include <modifycommand.h> #include <boost/filesystem/path.hpp> @@ -9,10 +9,12 @@ namespace Gentoo { namespace Service { class UpdatesPatch; - class UpdatesProcessor : public Maintenance::FileProcessor { + class UpdatesProcessor : public AbstractFileProcessor { public: static const int FILETYPEID; + UpdatesProcessor(bool); + void created(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, const boost::filesystem::path & path) override; void modified(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, const boost::filesystem::path & path) override; void deleted(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn) override; |