Add basic Collator::find() method.
[dcpomatic.git] / src / lib / video_ring_buffers.h
index 47fda01f7fd7b9c503a84d6cffc7c2dde60b15a3..1514e9bbd2e23e58a7c9b4989abca99e0706a6c6 100644 (file)
 */
 
 
+#ifndef DCPOMATIC_VIDEO_RING_BUFFERS_H
+#define DCPOMATIC_VIDEO_RING_BUFFERS_H
+
+
 #include "dcpomatic_time.h"
 #include "player_video.h"
-#include "types.h"
 #include <boost/thread/mutex.hpp>
 #include <utility>
 
@@ -53,3 +56,6 @@ private:
        mutable boost::mutex _mutex;
        std::list<std::pair<std::shared_ptr<PlayerVideo>, dcpomatic::DCPTime>> _data;
 };
+
+
+#endif