C++11 tidying.
[dcpomatic.git] / src / lib / dcp_subtitle.h
index 9cd0685aadbddd01b834d2e10550feb69b6d41ab..2011759aa13082ab7e39485e03638d08bfb155e4 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>
 
+
 namespace dcp {
        class SubtitleAsset;
 }
 
+
 class DCPSubtitle
 {
 protected:
        std::shared_ptr<dcp::SubtitleAsset> load (boost::filesystem::path) const;
 };
 
+
 #endif