summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-08 01:09:48 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-08 01:09:48 +0200
commit54953e5f759374de8f99dd83ab47030c38dd7f0e (patch)
tree3d0870d028de9e8e720c3572359d17cf6cf7ac51
parent6281e3d5e9ef094d7c8495dfa56a58c47be163ec (diff)
Add some missing accessors to AssetList.v1.10.20
-rw-r--r--src/asset_list.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/asset_list.h b/src/asset_list.h
index 29563a8a..40b23b2a 100644
--- a/src/asset_list.h
+++ b/src/asset_list.h
@@ -63,20 +63,32 @@ public:
_annotation_text = annotation_text;
}
+ boost::optional<std::string> annotation_text() const {
+ return _annotation_text;
+ }
+
void set_issue_date(std::string issue_date) {
_issue_date = issue_date;
}
+ std::string issue_date() const {
+ return _issue_date;
+ }
+
void set_issuer(std::string issuer) {
_issuer = issuer;
}
+ std::string issuer() const {
+ return _issuer;
+ }
+
void set_creator(std::string creator) {
_creator = creator;
}
- boost::optional<std::string> annotation_text() const {
- return _annotation_text;
+ std::string creator() const {
+ return _creator;
}
protected: