diff options
Diffstat (limited to 'src/lib/magick_image_proxy.h')
| -rw-r--r-- | src/lib/magick_image_proxy.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/magick_image_proxy.h b/src/lib/magick_image_proxy.h index 7d2251aeb..f4ddb2c94 100644 --- a/src/lib/magick_image_proxy.h +++ b/src/lib/magick_image_proxy.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ */ #include "image_proxy.h" +#include <boost/thread/mutex.hpp> class MagickImageProxy : public ImageProxy { @@ -33,4 +34,5 @@ public: private: Magick::Blob _blob; mutable boost::shared_ptr<Image> _image; + mutable boost::mutex _mutex; }; |
