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

Revert "Remove redundant #include-s from .h files..."

This reverts commit b7fe62d170.
This commit is contained in:
Paul Licameli
2019-05-16 14:33:55 -04:00
parent b7fe62d170
commit 56f51d8176
99 changed files with 142 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ updating the ODPCMAliasBlockFile and the GUI of the newly available data.
#include <vector>
#include "ODTask.h"
#include "ODTaskThread.h"
#include "../Internat.h"
class ODPCMAliasBlockFile;
class WaveTrack;

View File

@@ -14,11 +14,14 @@
#include "../Experimental.h"
#include "../MemoryX.h"
#ifdef EXPERIMENTAL_OD_FFMPEG
#include "../import/ImportRaw.h" // for TrackHolders
#include <vector>
#include "ODDecodeTask.h"
#include "ODTaskThread.h"
struct streamContext;
using Scs = ArrayOf<std::unique_ptr<streamContext>>;

View File

@@ -31,6 +31,7 @@ robust enough to allow all the user changes such as copy/paste, DELETE, and so o
#include <vector>
#include <wx/ffile.h> // data member
#include "ODDecodeTask.h"
#include "ODTaskThread.h"
#include "FLAC++/decoder.h"

View File

@@ -28,8 +28,10 @@ robust enough to allow all the user changes such as copy/paste, DELETE, and so o
#ifndef __AUDACITY_ODDecodeTask__
#define __AUDACITY_ODDecodeTask__
#include "../MemoryX.h"
#include <vector>
#include "ODTask.h"
#include "ODTaskThread.h"
#include "../Internat.h"
class ODDecodeBlockFile;
class WaveTrack;

View File

@@ -23,8 +23,10 @@ in a background thread.
#ifndef __AUDACITY_ODTASK__
#define __AUDACITY_ODTASK__
#include "ODTaskThread.h"
#include "../BlockFile.h"
#include "../MemoryX.h"
#include <vector>
#include <wx/event.h> // to declare custom event type
class AudacityProject;

View File

@@ -22,6 +22,7 @@ tasks associated with a WaveTrack.
#ifndef __AUDACITY_ODWAVETRACKTASKQUEUE__
#define __AUDACITY_ODWAVETRACKTASKQUEUE__
#include "../MemoryX.h"
#include <vector>
#include "ODTaskThread.h"
class Track;