Documented model::GroupTrack

This commit is contained in:
Joel Holdsworth 2009-01-24 12:31:03 +00:00
parent f0c7d85a1f
commit e2992c62ef

View file

@ -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();
};