diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-06 12:38:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-06 12:38:47 +0100 |
| commit | 4c2e6d70f15deb7e571af4a49c8643d3957f7b99 (patch) | |
| tree | e6f3dc6fdf62bf31edd973469f9c062f7f569b02 /src/decrypted_kdm.h | |
| parent | d97e1600057d796c4163cecf28f9f04a6ea6402b (diff) | |
Add some KDM metadata accessors.
Diffstat (limited to 'src/decrypted_kdm.h')
| -rw-r--r-- | src/decrypted_kdm.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/decrypted_kdm.h b/src/decrypted_kdm.h index 45ad8fa6..06e2f9e1 100644 --- a/src/decrypted_kdm.h +++ b/src/decrypted_kdm.h @@ -84,6 +84,18 @@ public: return _keys; } + std::string annotation_text () const { + return _annotation_text; + } + + std::string content_title_text () const { + return _content_title_text; + } + + std::string issue_date () const { + return _issue_date; + } + private: LocalTime _not_valid_before; LocalTime _not_valid_after; |
