summaryrefslogtreecommitdiffstats
path: root/src/library/export/engineprimeexportrequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/export/engineprimeexportrequest.h')
-rw-r--r--src/library/export/engineprimeexportrequest.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/library/export/engineprimeexportrequest.h b/src/library/export/engineprimeexportrequest.h
new file mode 100644
index 0000000000..d4000e65f7
--- /dev/null
+++ b/src/library/export/engineprimeexportrequest.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include <QDir>
+
+#include "library/export/exportrequest.h"
+
+namespace mixxx {
+
+/// A request to export the Mixxx library to an external Engine Prime database.
+struct EnginePrimeExportRequest : public ExportRequest {
+ /// Directory path, ending in "Engine Library", where database files will be written.
+ QDir engineLibraryDbDir;
+
+ /// Directory in which to write the exported music files.
+ QDir musicFilesDir;
+};
+
+} // namespace mixxx