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