diff options
Diffstat (limited to 'src/lib/check_content_job.h')
| -rw-r--r-- | src/lib/check_content_job.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/lib/check_content_job.h b/src/lib/check_content_job.h index 3a8e8d653..1717bdd8d 100644 --- a/src/lib/check_content_job.h +++ b/src/lib/check_content_job.h @@ -18,19 +18,22 @@ */ + #include "job.h" + /** @class CheckContentJob * @brief A job to check content that was just loaded to see if anything needs fixing about it. */ + class CheckContentJob : public Job { public: - CheckContentJob (std::shared_ptr<const Film>); - ~CheckContentJob (); + CheckContentJob(std::shared_ptr<const Film>); + ~CheckContentJob(); - std::string name () const override; - std::string json_name () const override; - void run () override; + std::string name() const override; + std::string json_name() const override; + void run() override; }; |
