1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #ifndef _FASTCDR_CONFIG_H_
- #define _FASTCDR_CONFIG_H_
- #define FASTCDR_VERSION_MAJOR 1
- #define FASTCDR_VERSION_MINOR 0
- #define FASTCDR_VERSION_MICRO 14
- #define FASTCDR_VERSION_STR "1.0.14"
- // C++11 support defines
- #ifndef HAVE_CXX11
- #define HAVE_CXX11 1
- #endif
- // C++0x support defines
- #ifndef HAVE_CXX0X
- #define HAVE_CXX0X 1
- #endif
- // C++ constexpr support
- #ifndef HAVE_CXX_CONSTEXPR
- #define HAVE_CXX_CONSTEXPR 1
- #endif
- #if HAVE_CXX_CONSTEXPR
- #define CONSTEXPR constexpr
- #else
- #define CONSTEXPR const
- #endif
- // Endianness defines
- #ifndef __BIG_ENDIAN__
- #define __BIG_ENDIAN__ 0
- #endif
- #if defined(__ARM_ARCH) && __ARM_ARCH <= 7
- #define FASTCDR_ARM32
- #endif
- #endif // _FASTCDR_CONFIG_H_
|