diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-15 02:08:05 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-15 10:57:07 +0100 |
| commit | f8acc34bcb4401184064598353d6c54df3cab1f9 (patch) | |
| tree | f3861ef2b616beb1de08f14a70605480e1feeebc /src/lib/scoped_temporary.h | |
| parent | 6a69f5ba3ce43094493785bb449c91001557b80d (diff) | |
More rearrangement and add Barco Alchemy.
Diffstat (limited to 'src/lib/scoped_temporary.h')
| -rw-r--r-- | src/lib/scoped_temporary.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/scoped_temporary.h b/src/lib/scoped_temporary.h index 87c8e387f..986f565a0 100644 --- a/src/lib/scoped_temporary.h +++ b/src/lib/scoped_temporary.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -19,12 +19,13 @@ */ #include <boost/filesystem.hpp> +#include <boost/noncopyable.hpp> #include <cstdio> /** @class ScopedTemporary * @brief A temporary file which is deleted when the ScopedTemporary object goes out of scope. */ -class ScopedTemporary +class ScopedTemporary : public boost::noncopyable { public: ScopedTemporary (); |
