From 54953e5f759374de8f99dd83ab47030c38dd7f0e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 8 May 2025 01:09:48 +0200 Subject: Add some missing accessors to AssetList. --- src/asset_list.h | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'src') 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 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 annotation_text() const { - return _annotation_text; + std::string creator() const { + return _creator; } protected: -- cgit v1.2.3