Files
oak-editor/app/timeline/timelinepoints.cpp
T

22 lines
336 B
C++

#include "timelinepoints.h"
TimelineMarkerList *TimelinePoints::markers()
{
return &markers_;
}
const TimelineMarkerList *TimelinePoints::markers() const
{
return &markers_;
}
const TimelineWorkArea *TimelinePoints::workarea() const
{
return &workarea_;
}
TimelineWorkArea *TimelinePoints::workarea()
{
return &workarea_;
}