diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-05-04 01:03:26 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-05-04 01:03:26 +0200 |
| commit | 7703a0d95f4188d4e7e9414afc6bfe3259cf1cdc (patch) | |
| tree | 1325e5faa92fe80cfa898687320a97471f481a85 /src/lib/recipient_with_kdm.h | |
| parent | 107549f047c45a692f229a5023b4f26cd1301921 (diff) | |
All going downhill.dkdm
Diffstat (limited to 'src/lib/recipient_with_kdm.h')
| -rw-r--r-- | src/lib/recipient_with_kdm.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/recipient_with_kdm.h b/src/lib/recipient_with_kdm.h new file mode 100644 index 000000000..892a082fd --- /dev/null +++ b/src/lib/recipient_with_kdm.h @@ -0,0 +1,15 @@ +#ifndef DCPOMATIC_RECIPIENT_WITH_KDM_H +#define DCPOMATIC_RECIPIENT_WITH_KDM_H + +#include <dcp/name_format.h> +#include <boost/filesystem.hpp> + +class RecipientWithKDM +{ +public: + virtual void add_name_values (dcp::NameFormat::Map& values) = 0; + virtual std::string kdm_as_xml () const = 0; + virtual void kdm_as_xml_to_file (boost::filesystem::path out) const = 0; +}; + +#endif |
