Control Surface  1.1.1
MIDI Control Surface library for Arduino
AH/Settings/NamespaceSettings.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #define USE_AH_NAMESPACE
4 #define AH_NAMESPACE_NAME AH
5 
6 // ========================================================================== //
7 
8 #ifdef USE_AH_NAMESPACE
9 #define BEGIN_AH_NAMESPACE namespace AH_NAMESPACE_NAME {
10 #define END_AH_NAMESPACE }
11 #define USING_AH_NAMESPACE using namespace AH_NAMESPACE_NAME
12 #else
13 #define BEGIN_AH_NAMESPACE
14 #define END_AH_NAMESPACE
15 #define USING_AH_NAMESPACE
16 #endif