Remove in-place translations support.
[dcpomatic.git] / src / lib / create_cli.h
index f88cdb8e43a20178659c4ce5cdd55f19c38fa97e..782aaf97478d10e01063c0373229657af1fd0583 100644 (file)
@@ -60,17 +60,19 @@ public:
 private:
        friend struct ::create_cli_test;
 
-       boost::optional<std::string> template_name;
-       std::string name;
-       Ratio const * container_ratio = nullptr;
-       bool encrypt = false;
-       bool threed = false;
-       DCPContentType const * dcp_content_type = nullptr;
-       dcp::Standard standard = dcp::Standard::SMPTE;
-       bool no_use_isdcf_name = false;
-       bool twok = false;
-       bool fourk = false;
-       boost::optional<int> j2k_bandwidth;
+       boost::optional<std::string> _template_name;
+       std::string _name;
+       Ratio const* _container_ratio = nullptr;
+       bool _no_encrypt = false;
+       bool _encrypt = false;
+       bool _twod = false;
+       bool _threed = false;
+       DCPContentType const* _dcp_content_type = nullptr;
+       boost::optional<dcp::Standard> _standard;
+       bool _no_use_isdcf_name = false;
+       bool _twok = false;
+       bool _fourk = false;
+       boost::optional<int> _j2k_bandwidth;
 
        static std::string _help;
 };