lumiera_/src/gui/model/sequence.hpp

61 lines
1.5 KiB
C++
Raw Normal View History

2008-11-22 20:08:12 +01:00
/*
sequence.hpp - Definition of the Sequence class
2010-12-17 23:28:49 +01:00
2008-11-22 20:08:12 +01:00
Copyright (C) Lumiera.org
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
2010-12-17 23:28:49 +01:00
2008-11-22 20:08:12 +01:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
2010-12-17 23:28:49 +01:00
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
2008-11-22 20:08:12 +01:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2010-12-17 23:28:49 +01:00
2008-11-22 20:08:12 +01:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2010-12-17 23:28:49 +01:00
2008-11-22 20:08:12 +01:00
*/
/** @file sequence.hpp
** This file contains the definition of Sequence, a class which
** contains a
*/
#ifndef SEQUENCE_HPP
#define SEQUENCE_HPP
#include "parent-track.hpp"
2008-11-22 20:08:12 +01:00
namespace gui {
namespace model {
2008-11-25 23:11:58 +01:00
class Track;
2008-11-22 20:08:12 +01:00
2009-01-24 13:30:07 +01:00
/**
* A class representation of a sequence.
* @remarks Sequence objects are also the roots of track trees.
**/
class Sequence : public ParentTrack
2008-11-22 20:08:12 +01:00
{
public:
2009-01-24 13:30:07 +01:00
/**
* Constructor
**/
2008-11-22 20:08:12 +01:00
Sequence();
2009-01-24 13:30:07 +01:00
/**
* Produces a human readable debug string representation of this
* track.
* @return Returns the human readable string.
**/
std::string print_track();
2008-11-22 20:08:12 +01:00
};
} // namespace model
} // namespace gui
#endif // SEQUENCE_HPP