Added a track tree object to the layout helper

This commit is contained in:
Joel Holdsworth 2008-12-30 23:07:59 +00:00
parent e670f42a39
commit 78a9ebb258

View file

@ -28,10 +28,13 @@
#define TIMELINE_LAYOUT_HELPER_HPP #define TIMELINE_LAYOUT_HELPER_HPP
#include "../../gtk-lumiera.hpp" #include "../../gtk-lumiera.hpp"
#include "../../../lib/tree.hpp"
namespace gui { namespace gui {
namespace widgets { namespace widgets {
namespace timeline { namespace timeline {
class Track;
/** /**
* A helper class for the TimelineWidget. TimelineLayoutHelper * A helper class for the TimelineWidget. TimelineLayoutHelper
@ -40,7 +43,9 @@ namespace timeline {
*/ */
class TimelineLayoutHelper class TimelineLayoutHelper
{ {
protected:
lumiera::tree<Track*> currentTrackTree;
}; };
} // namespace timeline } // namespace timeline