X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fcheck_content_change_job.h;h=963d09b59277c128e4c2506a1f4508c81e54b644;hp=739d2651f426c535d3fde8f383f07a3a612132d7;hb=HEAD;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 diff --git a/src/lib/check_content_change_job.h b/src/lib/check_content_change_job.h deleted file mode 100644 index 739d2651f..000000000 --- a/src/lib/check_content_change_job.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - Copyright (C) 2018 Carl Hetherington - - This file is part of DCP-o-matic. - - DCP-o-matic is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - DCP-o-matic is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with DCP-o-matic. If not, see . - -*/ - -#include "job.h" - -/** @class CheckContentChangeJob - * @brief A job to check whether content has changed since it was added to the film. - */ - -class CheckContentChangeJob : public Job -{ -public: - CheckContentChangeJob (std::shared_ptr, std::shared_ptr following = std::shared_ptr(), bool gui = true); - ~CheckContentChangeJob (); - - std::string name () const; - std::string json_name () const; - void run (); - -private: - std::shared_ptr _following; - bool _gui; -};