summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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: