From e2992c62ef15b02b10b7d6bcc8ed12e3d7399704 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sat, 24 Jan 2009 12:31:03 +0000 Subject: [PATCH] Documented model::GroupTrack --- src/gui/model/group-track.hpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/gui/model/group-track.hpp b/src/gui/model/group-track.hpp index 06da74060..ae3f48b63 100644 --- a/src/gui/model/group-track.hpp +++ b/src/gui/model/group-track.hpp @@ -30,12 +30,23 @@ namespace gui { namespace model { - + +/** + * A class representation of a grouping of tracks. + **/ class GroupTrack : public ParentTrack { public: + /** + * Constructor + **/ GroupTrack(); + /** + * Produces a human readable debug string representation of this + * track. + * @return Returns the human readable string. + **/ std::string print_track(); };