diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-16 21:57:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-16 21:57:42 +0100 |
| commit | e16c8ed02a0cb1f733a990d75a9de1bf50cf89bd (patch) | |
| tree | f6e884f103da51c8f9b76a6a76693f8389aee607 /src/lib/job.h | |
| parent | 1f1a9f48b39b1fc8afeb62bb6fa0cde50983b60c (diff) | |
Some missing copy constructors / operator= / noncopyable.
Diffstat (limited to 'src/lib/job.h')
| -rw-r--r-- | src/lib/job.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/job.h b/src/lib/job.h index 791a9101b..ce3a87f5e 100644 --- a/src/lib/job.h +++ b/src/lib/job.h @@ -35,7 +35,7 @@ class Film; /** @class Job * @brief A parent class to represent long-running tasks which are run in their own thread. */ -class Job : public boost::enable_shared_from_this<Job> +class Job : public boost::enable_shared_from_this<Job>, public boost::noncopyable { public: Job (boost::shared_ptr<const Film>); |
