diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-16 22:20:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-16 22:20:39 +0100 |
| commit | bfc0b96db6cc6c2e94d93f9c4239adca14a6bb0c (patch) | |
| tree | 1038f16144cfe58995e31650925f066b67fda677 /src/lib/ratio.h | |
| parent | e16c8ed02a0cb1f733a990d75a9de1bf50cf89bd (diff) | |
More noncopyable.
Diffstat (limited to 'src/lib/ratio.h')
| -rw-r--r-- | src/lib/ratio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ratio.h b/src/lib/ratio.h index 5480eee12..c331edabe 100644 --- a/src/lib/ratio.h +++ b/src/lib/ratio.h @@ -21,9 +21,10 @@ #define DCPOMATIC_RATIO_H #include <vector> +#include <boost/utility.hpp> #include <libdcp/util.h> -class Ratio +class Ratio : public boost::noncopyable { public: Ratio (float ratio, std::string id, std::string n, std::string d) |
