diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-05-06 23:58:51 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-05-06 23:58:51 +0200 |
| commit | 2d8599e4277f1a357ed0f7101777ca9b18e3876a (patch) | |
| tree | 4a0d1ebd0dfe686ad737e83d72224c7abd7f1245 | |
| parent | be7c1b89b3f9058481a91359abf5f3d4b5e57255 (diff) | |
Missing header guard.
| -rw-r--r-- | src/lib/kdm_recipient.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/kdm_recipient.h b/src/lib/kdm_recipient.h index ee4e8c39c..c0533daeb 100644 --- a/src/lib/kdm_recipient.h +++ b/src/lib/kdm_recipient.h @@ -18,6 +18,9 @@ */ +#ifndef DCPOMATIC_KDM_RECIPIENT_H +#define DCPOMATIC_KDM_RECIPIENT_H + #include <dcp/certificate.h> #include <libcxml/cxml.h> #include <libxml++/libxml++.h> @@ -41,3 +44,5 @@ public: std::string notes; boost::optional<dcp::Certificate> recipient; }; + +#endif |
