From 957e5eee63dd82c407f5074146c10e2c82c912c1 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Thu, 17 Jan 2019 12:52:19 -0500 Subject: [PATCH] Remove unnecessary #include from LoadCommands.h and LoadEffects.h --- src/commands/LoadCommands.cpp | 1 + src/commands/LoadCommands.h | 5 ++--- src/effects/LoadEffects.h | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/commands/LoadCommands.cpp b/src/commands/LoadCommands.cpp index 328b1b09e..783b7bd1d 100644 --- a/src/commands/LoadCommands.cpp +++ b/src/commands/LoadCommands.cpp @@ -17,6 +17,7 @@ modelled on BuiltinEffectsModule #include "LoadCommands.h" #include "../Prefs.h" + #include "../MemoryX.h" #include "../effects/EffectManager.h" diff --git a/src/commands/LoadCommands.h b/src/commands/LoadCommands.h index 4c966c6dd..c46a14c58 100644 --- a/src/commands/LoadCommands.h +++ b/src/commands/LoadCommands.h @@ -10,12 +10,11 @@ **********************************************************************/ #include "audacity/ModuleInterface.h" -#include "audacity/EffectInterface.h" -#include "audacity/PluginInterface.h" -#include "AudacityCommand.h" #include "../MemoryX.h" +class AudacityCommand; + /////////////////////////////////////////////////////////////////////////////// // // BuiltinCommandsModule diff --git a/src/effects/LoadEffects.h b/src/effects/LoadEffects.h index e950c2aff..4ca3157d6 100644 --- a/src/effects/LoadEffects.h +++ b/src/effects/LoadEffects.h @@ -9,12 +9,11 @@ **********************************************************************/ #include "audacity/ModuleInterface.h" -#include "audacity/EffectInterface.h" -#include "audacity/PluginInterface.h" -#include "Effect.h" #include "../MemoryX.h" +class Effect; + /////////////////////////////////////////////////////////////////////////////// // // BuiltinEffectsModule