summaryrefslogtreecommitdiff
path: root/src/data.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.h')
-rw-r--r--src/data.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/data.h b/src/data.h
index 0b746052..12949fe4 100644
--- a/src/data.h
+++ b/src/data.h
@@ -17,6 +17,9 @@
*/
+#ifndef LIBDCP_DATA_H
+#define LIBDCP_DATA_H
+
/** @file src/data.h
* @brief Data class.
*/
@@ -38,6 +41,8 @@ public:
, size (size_)
{}
+ Data (uint8_t const * data, boost::uintmax_t size_);
+
Data (boost::filesystem::path file);
boost::shared_array<uint8_t> data;
@@ -45,3 +50,5 @@ public:
};
}
+
+#endif