Supporters update.
[dcpomatic.git] / src / lib / analyse_subtitles_job.h
index 88b5d23dc80645e15d7c6c6c8f35539053a0411c..c47117c5774835d8056205d08df83077547dc141 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "job.h"
-#include "types.h"
 #include "player_text.h"
+#include "text_type.h"
+
 
 class Film;
 class Content;
 
+
 class AnalyseSubtitlesJob : public Job
 {
 public:
-       AnalyseSubtitlesJob (boost::shared_ptr<const Film> film, boost::shared_ptr<Content> content);
+       AnalyseSubtitlesJob (std::shared_ptr<const Film> film, std::shared_ptr<Content> content);
 
-       std::string name () const;
-       std::string json_name () const;
-       void run ();
+       std::string name () const override;
+       std::string json_name () const override;
+       void run () override;
 
        boost::filesystem::path path () const {
                return _path;
        }
 
 private:
-       void analyse (PlayerText text, TextType type);
+       void analyse(PlayerText const& text, TextType type);
 
-       boost::weak_ptr<Content> _content;
+       std::weak_ptr<Content> _content;
        boost::filesystem::path _path;
-       boost::optional<dcpomatic::Rect<double> > _bounding_box;
+       boost::optional<dcpomatic::Rect<double>> _bounding_box;
 };