Extract all uses of DCP-o-matic name to allow branding.
[dcpomatic.git] / src / wx / wx_variant.h
1 /*
2     Copyright (C) 2024 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include <wx/wx.h>
23
24
25 namespace variant {
26 namespace wx {
27
28
29 wxString dcpomatic();
30 wxString dcpomatic_batch_converter();
31 wxString dcpomatic_combiner();
32 wxString dcpomatic_disk_writer();
33 wxString dcpomatic_editor();
34 wxString dcpomatic_encode_server();
35 wxString dcpomatic_kdm_creator();
36 wxString dcpomatic_player();
37 wxString dcpomatic_playlist_editor();
38 wxString dcpomatic_verifier();
39
40 wxString insert_dcpomatic(wxString const& s);
41 wxString insert_dcpomatic_batch_converter(wxString const& s);
42 wxString insert_dcpomatic_disk_writer(wxString const& s);
43 wxString insert_dcpomatic_editor(wxString const& s);
44 wxString insert_dcpomatic_encode_server(wxString const& s);
45 wxString insert_dcpomatic_kdm_creator(wxString const& s);
46 wxString insert_dcpomatic_player(wxString const& s);
47 wxString insert_dcpomatic_playlist_editor(wxString const& s);
48 wxString insert_dcpomatic_verifier(wxString const& s);
49
50
51 }
52 }