X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fratio.h;h=016a22edca438460a13ccdb8e249ebb33b9cadcb;hb=2e2f11b29651cffe37c64275dbd45c7563310020;hp=40f596ab8ea6dd1f3d0aa6a9c9bb6e7b69d4428d;hpb=e530b2e36d7646f7fd7bd0ca0ebcc0a40ddf52c1;p=dcpomatic.git diff --git a/src/lib/ratio.h b/src/lib/ratio.h index 40f596ab8..016a22edc 100644 --- a/src/lib/ratio.h +++ b/src/lib/ratio.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2018 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,17 +18,20 @@ */ + #ifndef DCPOMATIC_RATIO_H #define DCPOMATIC_RATIO_H + #include #include #include + /** @class Ratio * @brief Description of an image ratio. */ -class Ratio : public boost::noncopyable +class Ratio { public: Ratio (float ratio, std::string id, std::string in, boost::optional cn, std::string d) @@ -39,6 +42,9 @@ public: , _isdcf_name (d) {} + Ratio (Ratio const&) = delete; + Ratio& operator= (Ratio const&) = delete; + std::string id () const { return _id; } @@ -50,7 +56,7 @@ public: std::string container_nickname () const; bool used_for_container () const { - return static_cast (_container_nickname); + return static_cast(_container_nickname); } std::string isdcf_name () const { @@ -85,4 +91,5 @@ private: static std::vector _ratios; }; + #endif