project-kyoku/include/timelineviewmanager.h

15 lines
244 B
C
Raw Normal View History

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