moved timeline tracktypes into timelinecommon.h

This commit is contained in:
itsmattkc
2020-01-06 15:34:12 +11:00
parent dae09abf45
commit 7bf2422c44
22 changed files with 106 additions and 117 deletions
+3 -3
View File
@@ -21,18 +21,18 @@
#include "trackreference.h"
TrackReference::TrackReference() :
type_(kTrackTypeNone),
type_(Timeline::kTrackTypeNone),
index_(0)
{
}
TrackReference::TrackReference(const TrackType &type, const int &index) :
TrackReference::TrackReference(const Timeline::TrackType &type, const int &index) :
type_(type),
index_(index)
{
}
const TrackType &TrackReference::type() const
const Timeline::TrackType &TrackReference::type() const
{
return type_;
}