Various Doxygen fixes.
[dcpomatic.git] / src / lib / dcp_examiner.h
index 0558bfcfce1bc688853f6f13cb7c5ef63f3c3757..d9c372c3c590a37510ff18b91bbc36dedddd66de 100644 (file)
@@ -93,6 +93,10 @@ public:
                return _cpl;
        }
 
+       std::list<int64_t> reel_lengths () const {
+               return _reel_lengths;
+       }
+
 private:
        boost::optional<double> _video_frame_rate;
        boost::optional<dcp::Size> _video_size;
@@ -108,4 +112,5 @@ private:
        boost::optional<dcp::Standard> _standard;
        bool _three_d;
        std::string _cpl;
+       std::list<int64_t> _reel_lengths;
 };