diff options
Diffstat (limited to 'gentoobrowse-api/service/maintenance/masksProcessor.h')
-rw-r--r-- | gentoobrowse-api/service/maintenance/masksProcessor.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/gentoobrowse-api/service/maintenance/masksProcessor.h b/gentoobrowse-api/service/maintenance/masksProcessor.h index 31acfdc..fca6ec8 100644 --- a/gentoobrowse-api/service/maintenance/masksProcessor.h +++ b/gentoobrowse-api/service/maintenance/masksProcessor.h @@ -3,25 +3,26 @@ #include "abstractFileProcessor.h" #include <connection.h> -#include <modifycommand.h> #include <filesystem> +#include <modifycommand.h> namespace Gentoo { namespace Service { class MasksProcessor : public AbstractFileProcessor { - public: - unsigned char phase() const override; - unsigned char order() const override; - bool match(const PathParts & pp) const override; + public: + 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 std::filesystem::path & path) override; - void modified(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, const std::filesystem::path & path) override; - void deleted(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn) override; + void created(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, + const std::filesystem::path & path) override; + void modified(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, + const std::filesystem::path & path) override; + void deleted(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn) override; - void phaseEnd(DB::Connection *, ChangeSet &) override; + void phaseEnd(DB::Connection *, ChangeSet &) override; }; } } #endif - |