From d600f9575f647e217daee4218d0017d4a0b3a4cd Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 5 Feb 2014 15:08:07 +0000 Subject: [PATCH] Comment fixes. --- src/cpl.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/cpl.h b/src/cpl.h index 6af7fe56..6ef992fd 100644 --- a/src/cpl.h +++ b/src/cpl.h @@ -60,22 +60,22 @@ public: void add (boost::shared_ptr reel); void add (KDM const &); - /** @return contents of the node */ + /** @return contents of the <AnnotationText> node */ std::string annotation_text () const { return _annotation_text; } - /** @return contents of the node */ + /** @return contents of the <ContentTitleText> node */ std::string content_title_text () const { return _content_title_text; } - /** @return contents of the node within */ + /** @return contents of the <Id> node within <ContentVersion> */ void set_content_version_id (std::string id) { _content_version_id = id; } - /** @return contents of the node within */ + /** @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; ///< - /** , and . 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; ///< - ContentKind _content_kind; ///< - std::string _content_version_id; ///< in - std::string _content_version_label_text; ///< in + 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 > _reels; }; -- 2.30.2