Control Surface stm32
MIDI Control Surface library for Arduino
Settings/NamespaceSettings.hpp
Go to the documentation of this file.
1#pragma once
2
3#define USE_CS_NAMESPACE
4#define CS_NAMESPACE_NAME CS
5
6// ========================================================================== //
7
8#ifdef USE_CS_NAMESPACE
9#define BEGIN_CS_NAMESPACE namespace CS_NAMESPACE_NAME {
10#define END_CS_NAMESPACE }
11#define USING_CS_NAMESPACE using namespace CS_NAMESPACE_NAME
12#else
13#define BEGIN_CS_NAMESPACE
14#define END_CS_NAMESPACE
15#define USING_CS_NAMESPACE
16#endif