mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-15 09:01:12 +01:00
Add conventional #include guards to two header files
This commit is contained in:
@@ -9,6 +9,9 @@
|
|||||||
|
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
|
|
||||||
|
#ifndef __AUDACITY_LOAD_COMMANDS__
|
||||||
|
#define __AUDACITY_LOAD_COMMANDS__
|
||||||
|
|
||||||
#include "audacity/ModuleInterface.h"
|
#include "audacity/ModuleInterface.h"
|
||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
@@ -85,3 +88,5 @@ private:
|
|||||||
using CommandHash = std::unordered_map< wxString, const Entry* > ;
|
using CommandHash = std::unordered_map< wxString, const Entry* > ;
|
||||||
CommandHash mCommands;
|
CommandHash mCommands;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
|
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
|
|
||||||
|
#ifndef __AUDACITY_LOAD_EFFECTS__
|
||||||
|
#define __AUDACITY_LOAD_EFFECTS__
|
||||||
|
|
||||||
#include "audacity/ModuleInterface.h"
|
#include "audacity/ModuleInterface.h"
|
||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
@@ -85,3 +88,5 @@ private:
|
|||||||
using EffectHash = std::unordered_map< wxString, const Entry* > ;
|
using EffectHash = std::unordered_map< wxString, const Entry* > ;
|
||||||
EffectHash mEffects;
|
EffectHash mEffects;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user