summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-13 11:17:20 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-13 11:17:20 +0100
commit70740737a3bdc6a3ac03b7562f466b1dcbf58ff9 (patch)
treea7ba54987bce602a3d2d7aa09e30efa50aa4ce86
parentfe474571eda2ef0eed219d32a9e517512faec52a (diff)
Missing header guard.v1.8.38
-rw-r--r--src/openjpeg_image.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/openjpeg_image.h b/src/openjpeg_image.h
index 2138a21e..31d1df05 100644
--- a/src/openjpeg_image.h
+++ b/src/openjpeg_image.h
@@ -32,6 +32,10 @@
*/
+#ifndef LIBDCP_OPENJPEG_IMAGE_H
+#define LIBDCP_OPENJPEG_IMAGE_H
+
+
/** @file src/openjpeg_image.h
* @brief OpenJPEGImage class
*/
@@ -97,3 +101,6 @@ private:
}
+
+
+#endif