summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@vertual.co.uk>2013-07-12 13:39:44 +0100
committerCarl Hetherington <carl@vertual.co.uk>2013-07-12 13:39:44 +0100
commit05fcd9f96f9a9eb6134967686782d5b6eaeb04eb (patch)
treefddd369db5ffc608177e3dc767b5aab44b19e110
parent9d61c8675c3c2b41e37f51d87debebd752aa1051 (diff)
Missing header guards.
-rw-r--r--src/cpl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cpl.h b/src/cpl.h
index c91e256a..2b37257d 100644
--- a/src/cpl.h
+++ b/src/cpl.h
@@ -17,6 +17,9 @@
*/
+#ifndef LIBDCP_CPL_H
+#define LIBDCP_CPL_H
+
#include <list>
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
@@ -121,3 +124,5 @@ private:
};
}
+
+#endif