Documented model::Sequence
This commit is contained in:
parent
2f12e5b239
commit
f0c7d85a1f
1 changed files with 12 additions and 3 deletions
|
|
@ -34,15 +34,24 @@ namespace model {
|
||||||
|
|
||||||
class Track;
|
class Track;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class representation of a sequence.
|
||||||
|
* @remarks Sequence objects are also the roots of track trees.
|
||||||
|
**/
|
||||||
class Sequence : public ParentTrack
|
class Sequence : public ParentTrack
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
**/
|
||||||
Sequence();
|
Sequence();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Produces a human readable debug string representation of this
|
||||||
|
* track.
|
||||||
|
* @return Returns the human readable string.
|
||||||
|
**/
|
||||||
std::string print_track();
|
std::string print_track();
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace model
|
} // namespace model
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue