C++11 tidying.
[dcpomatic.git] / src / lib / examine_content_job.cc
index fb943915517ca215e0566ce86c804276059ea88d..baa11ac93218820152ab5f3230d110fa0a9446df 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
-#include <boost/filesystem.hpp>
-#include "examine_content_job.h"
-#include "log.h"
+
 #include "content.h"
+#include "examine_content_job.h"
 #include "film.h"
+#include "log.h"
+#include <boost/filesystem.hpp>
 #include <iostream>
 
 #include "i18n.h"
 
+
 using std::string;
 using std::cout;
 using std::shared_ptr;
 
+
 ExamineContentJob::ExamineContentJob (shared_ptr<const Film> film, shared_ptr<Content> c)
        : Job (film)
        , _content (c)
@@ -38,23 +41,27 @@ ExamineContentJob::ExamineContentJob (shared_ptr<const Film> film, shared_ptr<Co
 
 }
 
+
 ExamineContentJob::~ExamineContentJob ()
 {
        stop_thread ();
 }
 
+
 string
 ExamineContentJob::name () const
 {
        return _("Examining content");
 }
 
+
 string
 ExamineContentJob::json_name () const
 {
        return N_("examine_content");
 }
 
+
 void
 ExamineContentJob::run ()
 {