lumiera_/src/gui/model/sequence.hpp

55 lines
1.3 KiB
C++
Raw Normal View History

2008-11-22 20:08:12 +01:00
/*
sequence.hpp - Definition of the Sequence class
Copyright (C) Lumiera.org
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
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.
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.
*/
/** @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
2008-11-29 17:13:58 +01:00
// TEST CODE
#include "group-track.hpp"
#include "clip-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
class Sequence : public ParentTrack
2008-11-22 20:08:12 +01:00
{
public:
Sequence();
2008-11-22 20:08:12 +01:00
private:
2008-11-22 20:08:12 +01:00
};
} // namespace model
} // namespace gui
#endif // SEQUENCE_HPP