From f0c7d85a1f74789d8e0c7946237c4e85f83cb1c1 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sat, 24 Jan 2009 12:30:07 +0000 Subject: [PATCH] Documented model::Sequence --- src/gui/model/sequence.hpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/gui/model/sequence.hpp b/src/gui/model/sequence.hpp index fb9f406ba..717368a9c 100644 --- a/src/gui/model/sequence.hpp +++ b/src/gui/model/sequence.hpp @@ -34,15 +34,24 @@ namespace model { class Track; +/** + * A class representation of a sequence. + * @remarks Sequence objects are also the roots of track trees. + **/ class Sequence : public ParentTrack { public: + /** + * Constructor + **/ Sequence(); + /** + * Produces a human readable debug string representation of this + * track. + * @return Returns the human readable string. + **/ std::string print_track(); - -private: - }; } // namespace model