1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Add conventional #include guards to two header files

This commit is contained in:
Paul Licameli 2020-09-26 15:26:25 -04:00
parent fbaf5f7e97
commit ec323c13d9
2 changed files with 10 additions and 0 deletions

View File

@ -9,6 +9,9 @@
**********************************************************************/
#ifndef __AUDACITY_LOAD_COMMANDS__
#define __AUDACITY_LOAD_COMMANDS__
#include "audacity/ModuleInterface.h"
#include <functional>
@ -85,3 +88,5 @@ private:
using CommandHash = std::unordered_map< wxString, const Entry* > ;
CommandHash mCommands;
};
#endif

View File

@ -8,6 +8,9 @@
**********************************************************************/
#ifndef __AUDACITY_LOAD_EFFECTS__
#define __AUDACITY_LOAD_EFFECTS__
#include "audacity/ModuleInterface.h"
#include <functional>
@ -85,3 +88,5 @@ private:
using EffectHash = std::unordered_map< wxString, const Entry* > ;
EffectHash mEffects;
};
#endif