diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-10 14:26:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-10 14:26:44 +0100 |
| commit | a97dffe585e8e185c57a3f1b025cffa6da9525d2 (patch) | |
| tree | ca367b6965afcda95a9c1ef86114c855ad3f0a88 /src/lib/data.h | |
| parent | 5c0a67869dbddb924c9f5ccb4126aa06d85b9b8b (diff) | |
Tidy up J2KImageProxy a bit.
Diffstat (limited to 'src/lib/data.h')
| -rw-r--r-- | src/lib/data.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/data.h b/src/lib/data.h index 84ff6671a..14658ad4a 100644 --- a/src/lib/data.h +++ b/src/lib/data.h @@ -17,6 +17,9 @@ */ +#ifndef DCPOMATIC_DATA_H +#define DCPOMATIC_DATA_H + #include <boost/shared_array.hpp> #include <boost/filesystem.hpp> #include <stdint.h> @@ -24,6 +27,7 @@ class Data { public: + Data (); Data (int size); Data (uint8_t const * data, int size); Data (boost::filesystem::path file); @@ -45,3 +49,5 @@ private: boost::shared_array<uint8_t> _data; int _size; }; + +#endif |
