diff options
Diffstat (limited to 'gentoobrowse-api/service/maintenance/masksProcessor.h')
-rw-r--r-- | gentoobrowse-api/service/maintenance/masksProcessor.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gentoobrowse-api/service/maintenance/masksProcessor.h b/gentoobrowse-api/service/maintenance/masksProcessor.h index d076a26..3a07036 100644 --- a/gentoobrowse-api/service/maintenance/masksProcessor.h +++ b/gentoobrowse-api/service/maintenance/masksProcessor.h @@ -10,13 +10,15 @@ namespace Gentoo { namespace Service { class MasksProcessor : public AbstractFileProcessor { public: - static const int FILETYPEID; + unsigned char phase() const override; + unsigned char order() const override; + bool match(const PathParts & pp) const override; 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; - void apply(DB::Connection *) override; + void apply(DB::Connection *, ChangeSet &) override; }; } } |