diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-02-05 15:08:07 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-02-05 15:08:07 +0000 |
| commit | d600f9575f647e217daee4218d0017d4a0b3a4cd (patch) | |
| tree | 00eb68d41713e8c7145c430d73aab46f37ef1cb9 | |
| parent | 5cb09148a9d3456727459b7d41b8c36b0ca277b9 (diff) | |
Comment fixes.
| -rw-r--r-- | src/cpl.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -60,22 +60,22 @@ public: void add (boost::shared_ptr<Reel> reel); void add (KDM const &); - /** @return contents of the <AnnotationText> node */ + /** @return contents of the <AnnotationText> node */ std::string annotation_text () const { return _annotation_text; } - /** @return contents of the <ContentTitleText> node */ + /** @return contents of the <ContentTitleText> node */ std::string content_title_text () const { return _content_title_text; } - /** @return contents of the <Id> node within <ContentVersion> */ + /** @return contents of the <Id> node within <ContentVersion> */ void set_content_version_id (std::string id) { _content_version_id = id; } - /** @return contents of the <LabelText> node within <ContentVersion> */ + /** @return contents of the <LabelText> node within <ContentVersion> */ void set_content_version_label_text (std::string text) { _content_version_label_text = text; } @@ -116,15 +116,15 @@ protected: } private: - std::string _annotation_text; ///< <AnnotationText> - /** <Issuer>, <Creator> and <IssueDate>. These are grouped + std::string _annotation_text; ///< <AnnotationText> + /** <Issuer>, <Creator> and <IssueDate>. These are grouped * because they occur together in a few places. */ XMLMetadata _metadata; - std::string _content_title_text; ///< <ContentTitleText> - ContentKind _content_kind; ///< <ContentKind> - std::string _content_version_id; ///< <Id> in <ContentVersion> - std::string _content_version_label_text; ///< <LabelText> in <ContentVersion> + std::string _content_title_text; ///< <ContentTitleText> + ContentKind _content_kind; ///< <ContentKind> + std::string _content_version_id; ///< <Id> in <ContentVersion> + std::string _content_version_label_text; ///< <LabelText> in <ContentVersion> std::list<boost::shared_ptr<Reel> > _reels; }; |
