18 lines
330 B
C++
18 lines
330 B
C++
#ifndef TIMELINEVIEWMANAGER_H
|
|
#define TIMELINEVIEWMANAGER_H
|
|
|
|
class Note;
|
|
|
|
class TimelineViewManager
|
|
{
|
|
public:
|
|
explicit TimelineViewManager();
|
|
virtual ~TimelineViewManager();
|
|
|
|
virtual void update() = 0;
|
|
virtual void draw() = 0;
|
|
virtual void initNoteGraphics(Note *note) = 0;
|
|
};
|
|
|
|
#endif // TIMELINEVIEWMANAGER_H
|