summaryrefslogtreecommitdiffstats
path: root/src/track
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-05-17 22:54:34 +0200
committerUwe Klotz <uklotz@mixxx.org>2020-05-17 23:26:43 +0200
commit442e5b56bac2e2b55074256d591c7985940b4715 (patch)
tree2c5121ba7b4add9219342be16f16ef49c64817b6 /src/track
parent443fd66f3bfe8e322e5ff77576296e91c0e0f2c1 (diff)
CueDAO: Remove internal caching and obsolete dupe detection
Diffstat (limited to 'src/track')
-rw-r--r--src/track/cue.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/track/cue.h b/src/track/cue.h
index 7eacf9d231..f6fe28ae72 100644
--- a/src/track/cue.h
+++ b/src/track/cue.h
@@ -25,6 +25,15 @@ class Cue : public QObject {
Cue(
const mixxx::CueInfo& cueInfo,
mixxx::audio::SampleRate sampleRate);
+ Cue(
+ int id,
+ TrackId trackId,
+ mixxx::CueType type,
+ double position,
+ double length,
+ int hotCue,
+ QString label,
+ mixxx::RgbColor color);
~Cue() override = default;
bool isDirty() const;
@@ -62,16 +71,6 @@ class Cue : public QObject {
void updated();
private:
- Cue(
- int id,
- TrackId trackId,
- mixxx::CueType type,
- double position,
- double length,
- int hotCue,
- QString label,
- mixxx::RgbColor color);
-
void setDirty(bool dirty);
void setId(int id);