summaryrefslogtreecommitdiffstats
path: root/src/track/beatsimporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/track/beatsimporter.h')
-rw-r--r--src/track/beatsimporter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/track/beatsimporter.h b/src/track/beatsimporter.h
index 402889fba2..4fd8b5c4ba 100644
--- a/src/track/beatsimporter.h
+++ b/src/track/beatsimporter.h
@@ -5,6 +5,7 @@
#include "audio/frame.h"
#include "audio/streaminfo.h"
+#include "track/beats.h"
namespace mixxx {
@@ -16,9 +17,8 @@ class BeatsImporter {
virtual bool isEmpty() const = 0;
- /// Determines the timing offset and returns a Vector of frame positions
- /// to use as input for the BeatMap constructor
- virtual QVector<mixxx::audio::FramePos> importBeatsAndApplyTimingOffset(
+ /// Determines the timing offset and returns a Beats object.
+ virtual BeatsPointer importBeatsAndApplyTimingOffset(
const QString& filePath, const audio::StreamInfo& streamInfo) = 0;
};