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 c69267c..7d7f258 100644 --- a/gentoobrowse-api/service/maintenance/updatesProcessor.h +++ b/gentoobrowse-api/service/maintenance/updatesProcessor.h @@ -11,14 +11,16 @@ namespace Gentoo {  		class UpdatesPatch;  		class UpdatesProcessor : 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 prepare(DB::Connection * dbc) override; -				void apply(DB::Connection * dbc) override; +				void apply(DB::Connection * dbc, ChangeSet &) override;  				void tidy(DB::Connection * dbc) override;  			private: | 
