2021-04-15 17:03:35 +02:00
|
|
|
#ifndef TIMELINEVIEWMANAGER_H
|
|
|
|
#define TIMELINEVIEWMANAGER_H
|
|
|
|
|
|
|
|
class Note;
|
|
|
|
|
|
|
|
class TimelineViewManager
|
|
|
|
{
|
|
|
|
public:
|
2021-06-07 20:19:58 +02:00
|
|
|
virtual ~TimelineViewManager() = default;
|
2021-04-15 17:03:35 +02:00
|
|
|
|
|
|
|
virtual void initNoteGraphics(Note *note) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TIMELINEVIEWMANAGER_H
|