Supporters update.
[dcpomatic.git] / src / lib / dcp_subtitle.h
index 9cd0685aadbddd01b834d2e10550feb69b6d41ab..285dd55bc4a1e931a3d3ab550bef2565c4dcdc55 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #ifndef DCPOMATIC_DCP_SUBTITLE_H
 #define DCPOMATIC_DCP_SUBTITLE_H
 
+
 #include <boost/filesystem.hpp>
+#include <memory>
+
 
 namespace dcp {
        class SubtitleAsset;
 }
 
+
 class DCPSubtitle
 {
 protected:
        std::shared_ptr<dcp::SubtitleAsset> load (boost::filesystem::path) const;
 };
 
+
 #endif