diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-12-28 01:19:35 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-12-28 01:19:35 +0000 |
| commit | e6ed1933ab493704f972435f6526bd715c15cd70 (patch) | |
| tree | 23f60d301177f763442d4c91be5c8df8b58e00d5 /src | |
| parent | ea81a192a65a03b664dac61de21e06cea7aa97a2 (diff) | |
Missing noncopyable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/file.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -25,18 +25,19 @@ #define LIBDCP_FILE_H #include <boost/filesystem.hpp> +#include <boost/noncopyable.hpp> namespace dcp { /** @class File * @brief Helper class which loads a file into memory. */ -class File +class File : public boost::noncopyable { public: File (boost::filesystem::path file); ~File (); - + uint8_t* data () const { return _data; } |
