1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Don't include Project.h or ODTask.h needlessly in other header files

This commit is contained in:
Paul Licameli
2018-10-16 17:23:10 -04:00
parent 2fafe5c328
commit a7df004a88
7 changed files with 10 additions and 5 deletions

View File

@@ -20,7 +20,6 @@ number of threads.
#define __AUDACITY_ODMANAGER__
#include <vector>
#include "ODTask.h"
#include "ODTaskThread.h"
#include <wx/thread.h>
#include <wx/wx.h>
@@ -38,6 +37,7 @@ DECLARE_EXPORTED_EVENT_TYPE(AUDACITY_DLL_API, EVT_ODTASK_UPDATE, -1)
int CompareNoCaseFileName(const wxString& first, const wxString& second);
/// A singleton that manages currently running Tasks on an arbitrary
/// number of threads.
class Track;
class WaveTrack;
class ODWaveTrackTaskQueue;
class ODManager final

View File

@@ -25,11 +25,12 @@ in a background thread.
#include "ODTaskThread.h"
#include "../BlockFile.h"
#include "../Project.h"
#include "../MemoryX.h"
#include <vector>
#include <wx/wx.h>
class AudacityProject;
class Track;
class WaveTrack;