Documented model::Sequence

This commit is contained in:
Joel Holdsworth 2009-01-24 12:30:07 +00:00
parent 2f12e5b239
commit f0c7d85a1f

View file

@ -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