1 /* Copyright Jukka Jyl�nki
2
3    Licensed under the Apache License, Version 2.0 (the "License");
4    you may not use this file except in compliance with the License.
5    You may obtain a copy of the License at
6
7        http://www.apache.org/licenses/LICENSE-2.0
8
9    Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License. */
14
15 /** @file MathNamespace.h
16         @author Jukka Jyl�nki
17         @brief Defines a C++ namespace for all Math objects (optional). */
18 #pragma once
19
20 #include "../MathBuildConfig.h"
21
22 #ifdef MATH_ENABLE_NAMESPACE
23
24 #define MATH_BEGIN_NAMESPACE namespace MATH_NAMESPACE_NAME {
25 #define MATH_END_NAMESPACE }
26
27 #define MATH_NS MATH_NAMESPACE_NAME
28
29 #define USE_MATH_NAMESPACE using namespace MATH_NAMESPACE_NAME;
30
31 #else
32
33 // Don't embed the math library into a namespace.
34 #define MATH_BEGIN_NAMESPACE
35 #define MATH_END_NAMESPACE
36
37 #define MATH_NS
38
39 #define USE_MATH_NAMESPACE
40
41 #endif
42
43 MATH_BEGIN_NAMESPACE
44 MATH_END_NAMESPACE
45
46 #ifdef MATH_AUTO_USE_NAMESPACE
47 // It is very unconventional to put a 'using namespace' inside a .h file, but here
48 // the math namespace only exists to allow shadowing all symbols outside the math libraries.
49 // This enables hiding the unwanted stuff from the math libraries (e.g. Windows GDI Polygon function).
50 USE_MATH_NAMESPACE
51 #endif

Go back to previous page