diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-06-24 17:02:19 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-06-24 17:02:19 +0200 |
| commit | 97b4901435e1ffc59d347cf7478a31fea8fae3a3 (patch) | |
| tree | baa9cf323e31a5bbd63416a40e5d3aa6ca3123c2 /src | |
| parent | bd4b4763f45fb44d165a329ae42c88ca82e7cac7 (diff) | |
Add issuer() and creator() getters to CPL.
Diffstat (limited to 'src')
| -rw-r--r-- | src/cpl.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -123,10 +123,18 @@ public: int64_t duration () const; + std::string issuer () const { + return _issuer; + } + void set_issuer (std::string issuer) { _issuer = issuer; } + std::string creator () const { + return _creator; + } + void set_creator (std::string creator) { _creator = creator; } |
