Add missing header guards.
authorCarl Hetherington <cth@carlh.net>
Sun, 6 Nov 2022 23:28:34 +0000 (00:28 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 22 Dec 2022 23:12:00 +0000 (00:12 +0100)
src/lib/image_store.h

index 365e7e4f60320dae7403825987ff6c9fb577a864..9069a82fa3cc685c337232990b26af2f163ade41 100644 (file)
 */
 
 
+#ifndef DCPOMATIC_IMAGE_STORE_H
+#define DCPOMATIC_IMAGE_STORE_H
+
+
 #include <boost/thread.hpp>
 #include <map>
 
@@ -49,3 +53,6 @@ private:
        std::map<uint8_t*, std::pair<std::shared_ptr<const Image>, int>> _images;
        boost::mutex _mutex;
 };
+
+
+#endif