summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-11-07 00:28:34 +0100
committerCarl Hetherington <cth@carlh.net>2024-12-09 00:05:00 +0100
commit540a05bdcba175964206ad6918563366e9f47613 (patch)
tree9cf78c53f21c5a1153f3e863ec405dcf4e17b248
parent86d958bfa5d84ee58b02348edd3548b750e8d553 (diff)
Add missing header guards.
-rw-r--r--src/lib/image_store.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/image_store.h b/src/lib/image_store.h
index 365e7e4f6..9069a82fa 100644
--- a/src/lib/image_store.h
+++ b/src/lib/image_store.h
@@ -19,6 +19,10 @@
*/
+#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