Skip to content

Commit

Permalink
engineprime
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Oct 13, 2023
1 parent 71b203e commit ea11abd
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
3 changes: 0 additions & 3 deletions src/library/export/dlglibraryexport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@
#include <QFormLayout>
#include <QGridLayout>
#include <QHBoxLayout>
#include <QLabel>
#include <QPushButton>
#include <QStandardPaths>
#include <algorithm>
#include <djinterop/djinterop.hpp>
#include <string>

#include "library/export/engineprimeexportrequest.h"
#include "library/trackcollection.h"
Expand Down
9 changes: 4 additions & 5 deletions src/library/export/dlglibraryexport.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,19 @@
#include <QLineEdit>
#include <QListWidget>
#include <QRadioButton>
#include <QTreeWidget>
#include <QWidget>
#include <memory>

#include "library/export/engineprimeexportrequest.h"
#include "library/trackset/crate/crateid.h"
#include "preferences/usersettings.h"
#include "util/optional.h"
#include "util/parented_ptr.h"

class TrackCollectionManager;
class QWidget;
class CrateId;

namespace mixxx {

struct EnginePrimeExportRequest;

/// The DlgLibraryExport class is a UI window that gathers information from
/// the user about how they would like to export the Mixxx library.
///
Expand Down
2 changes: 2 additions & 0 deletions src/library/export/engineprimeexportjob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
#include <memory>
#include <stdexcept>

#include "library/export/engineprimeexportrequest.h"
#include "library/trackcollection.h"
#include "library/trackcollectionmanager.h"
#include "library/trackset/crate/crate.h"
#include "moc_engineprimeexportjob.cpp"
#include "track/track.h"
Expand Down
9 changes: 6 additions & 3 deletions src/library/export/engineprimeexportjob.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@
#include <QWaitCondition>
#include <memory>

#include "library/export/engineprimeexportrequest.h"
#include "library/trackcollectionmanager.h"
#include "library/trackset/crate/crate.h"
#include "library/trackset/crate/crateid.h"
#include "track/track.h"
#include "track/track_decl.h"
#include "track/trackid.h"
#include "track/trackref.h"

class TrackCollectionManager;
class Waveform;

namespace mixxx {

struct EnginePrimeExportRequest;

/// The Engine Prime export job performs the work of exporting the Mixxx
/// library to an external Engine Prime (also known as "Engine Library")
/// database, using the libdjinterop library, in accordance with the export
Expand Down
1 change: 1 addition & 0 deletions src/library/export/libraryexporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <QProgressDialog>

#include "library/export/engineprimeexportjob.h"
#include "library/export/engineprimeexportrequest.h"
#include "moc_libraryexporter.cpp"
#include "util/parented_ptr.h"

Expand Down
5 changes: 3 additions & 2 deletions src/library/export/libraryexporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@

#include <QSharedPointer>
#include <QWidget>
#include <memory>

#include "library/export/dlglibraryexport.h"
#include "library/export/engineprimeexportrequest.h"
#include "library/trackset/crate/crateid.h"
#include "preferences/usersettings.h"
#include "util/optional.h"
#include "util/parented_ptr.h"

class TrackCollectionManager;
namespace mixxx {
struct EnginePrimeExportRequest;
} // Namespace mixxx

namespace mixxx {

Expand Down

0 comments on commit ea11abd

Please sign in to comment.