diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-14 18:15:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-15 22:33:26 +0200 |
| commit | 2e13ea8cf373a01de58068938e2e13d6628cf4b4 (patch) | |
| tree | 61af74b3dd9926570611268e29477098d303bddf /src/lib/check_content_job.h | |
| parent | 5ed395b220ec5e0b1ee4399b94687990f683ec64 (diff) | |
White space: check_content_job.{cc,h}
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; }; |
