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

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

Redundant, because transitively implied.  But don't do this for inclusions of
Audacity.h or Experimental.h.
This commit is contained in:
Paul Licameli
2019-05-16 14:15:05 -04:00
parent 56f51d8176
commit 548192fcf3
99 changed files with 3 additions and 142 deletions

View File

@@ -21,7 +21,6 @@ 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,14 +14,11 @@
#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,7 +31,6 @@ 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,10 +28,8 @@ 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,10 +23,8 @@ 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,7 +22,6 @@ tasks associated with a WaveTrack.
#ifndef __AUDACITY_ODWAVETRACKTASKQUEUE__
#define __AUDACITY_ODWAVETRACKTASKQUEUE__
#include "../MemoryX.h"
#include <vector>
#include "ODTaskThread.h"
class Track;