1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-24 23:21:21 +01:00

Remove some nested #include from Project.h

This commit is contained in:
Paul Licameli
2019-01-22 06:57:30 -05:00
parent 5ada9ee201
commit 1bcb7c20a5
21 changed files with 26 additions and 4 deletions

View File

@@ -21,14 +21,11 @@
#include "Audacity.h"
#include "Experimental.h"
#include "widgets/OverlayPanel.h"
#include "DirManager.h"
#include "Track.h"
#include "SelectionState.h"
#include "ViewInfo.h"
#include "TrackPanelListener.h"
#include "AudioIOListener.h"
#include "effects/EffectManager.h"
#include "xml/XMLTagHandler.h"
#include "toolbars/SelectionBarListener.h"
#include "toolbars/SpectralSelectionBarListener.h"
@@ -59,6 +56,7 @@ class AudacityProject;
class AutoSaveFile;
class Importer;
class ODLock;
class Overlay;
class RecordingRecoveryHandler;
class TrackList;
class Tags;
@@ -116,6 +114,8 @@ bool IsWindowAccessible(wxRect *requestedRect);
using AProjectHolder = std::shared_ptr< AudacityProject >;
using AProjectArray = std::vector< AProjectHolder >;
using WaveTrackArray = std::vector < std::shared_ptr < WaveTrack > >;
extern AProjectArray gAudacityProjects;