Supporters update.
[dcpomatic.git] / src / lib / subtitle_analysis.h
index 0a9dc6dca058ebbeb6f03cf3efbd4095f6018cec..04dcc95014b5654489b07b8d64031fbbe3b197a4 100644 (file)
 
 
 #include "rect.h"
-#include <boost/noncopyable.hpp>
 #include <boost/filesystem.hpp>
 
 
 /** @class SubtitleAnalysis
  *  @brief Class to store the results of a SubtitleAnalysisJob.
  */
-class SubtitleAnalysis : public boost::noncopyable
+class SubtitleAnalysis
 {
 public:
        explicit SubtitleAnalysis (boost::filesystem::path path);
@@ -42,6 +41,9 @@ public:
                , _analysis_y_offset (analysis_y_offset_)
        {}
 
+       SubtitleAnalysis (SubtitleAnalysis const&) = delete;
+       SubtitleAnalysis& operator= (SubtitleAnalysis const&) = delete;
+
        void write (boost::filesystem::path path) const;
 
        boost::optional<dcpomatic::Rect<double>> bounding_box () const {