Documented model::GroupTrack
This commit is contained in:
parent
f0c7d85a1f
commit
e2992c62ef
1 changed files with 12 additions and 1 deletions
|
|
@ -31,11 +31,22 @@
|
||||||
namespace gui {
|
namespace gui {
|
||||||
namespace model {
|
namespace model {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class representation of a grouping of tracks.
|
||||||
|
**/
|
||||||
class GroupTrack : public ParentTrack
|
class GroupTrack : public ParentTrack
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
**/
|
||||||
GroupTrack();
|
GroupTrack();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Produces a human readable debug string representation of this
|
||||||
|
* track.
|
||||||
|
* @return Returns the human readable string.
|
||||||
|
**/
|
||||||
std::string print_track();
|
std::string print_track();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue