summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-04-22 15:24:09 +0100
committerCarl Hetherington <cth@carlh.net>2015-04-22 15:24:09 +0100
commitdae4702a779b9dbaabf2a2361c26ae0c592f4bf3 (patch)
tree76c63140bc45e7057a4c01ad886dd2c625713463 /src
parentb223c577907878025ea926caf138f8008ac1c6bf (diff)
Header guard.
Diffstat (limited to 'src')
-rw-r--r--src/colour_conversion.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/colour_conversion.h b/src/colour_conversion.h
index e1ee1b11..559707af 100644
--- a/src/colour_conversion.h
+++ b/src/colour_conversion.h
@@ -17,6 +17,9 @@
*/
+#ifndef DCP_COLOUR_CONVERSION_H
+#define DCP_COLOUR_CONVERSION_H
+
#include "chromaticity.h"
#include <boost/shared_ptr.hpp>
#include <boost/numeric/ublas/matrix.hpp>
@@ -140,3 +143,5 @@ protected:
};
}
+
+#endif