summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-24 17:02:19 +0200
committerCarl Hetherington <cth@carlh.net>2021-06-24 17:02:19 +0200
commit97b4901435e1ffc59d347cf7478a31fea8fae3a3 (patch)
treebaa9cf323e31a5bbd63416a40e5d3aa6ca3123c2 /src
parentbd4b4763f45fb44d165a329ae42c88ca82e7cac7 (diff)
Add issuer() and creator() getters to CPL.
Diffstat (limited to 'src')
-rw-r--r--src/cpl.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cpl.h b/src/cpl.h
index 9c85dccd..68243765 100644
--- a/src/cpl.h
+++ b/src/cpl.h
@@ -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;
}