diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-31 10:59:48 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-31 10:59:54 +0200 |
| commit | a440484a56563a2d1b73d4c9811df8af49a65f2a (patch) | |
| tree | b1794c7697caef41708f34773dd7edc066b3426d /src/lib/variant.cc | |
| parent | 46710d2472abed134b0e93cb838a4babb1e53ca2 (diff) | |
Make the DCP-encode counting dependent on variant.
Diffstat (limited to 'src/lib/variant.cc')
| -rw-r--r-- | src/lib/variant.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/variant.cc b/src/lib/variant.cc index 3ccd84d82..9b12d753d 100644 --- a/src/lib/variant.cc +++ b/src/lib/variant.cc @@ -41,6 +41,7 @@ static char const* _report_problem_email = "carl@dcpomatic.com"; static bool const _show_tagline = true; static bool const _show_dcpomatic_website = true; static bool const _show_report_a_problem = true; +static bool const _count_created_dcps = true; std::string @@ -157,6 +158,12 @@ variant::show_report_a_problem() return _show_report_a_problem; } +bool +variant::count_created_dcps() +{ + return _count_created_dcps; +} + std::string variant::report_problem_email() { |
