43 lines
1.8 KiB
C++
43 lines
1.8 KiB
C++
/*
|
|
* 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.
|
|
*
|
|
* Copyright 2015-2016 Danny Robson <danny@nerdcruft.net>
|
|
*/
|
|
|
|
#include "introspection.hpp"
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
constexpr const char ::util::detail::type_name_bool::value[];
|
|
constexpr const char ::util::detail::type_name_char::value[];
|
|
constexpr const char ::util::detail::type_name_voidp::value[];
|
|
|
|
constexpr const char ::util::detail::type_name_u08::value[];
|
|
constexpr const char ::util::detail::type_name_u16::value[];
|
|
constexpr const char ::util::detail::type_name_u32::value[];
|
|
constexpr const char ::util::detail::type_name_u64::value[];
|
|
|
|
constexpr const char ::util::detail::type_name_s08::value[];
|
|
constexpr const char ::util::detail::type_name_s16::value[];
|
|
constexpr const char ::util::detail::type_name_s32::value[];
|
|
constexpr const char ::util::detail::type_name_s64::value[];
|
|
|
|
constexpr const char ::util::detail::type_name_f32::value[];
|
|
constexpr const char ::util::detail::type_name_f64::value[];
|
|
|
|
constexpr const char ::util::detail::type_name_string::value[];
|
|
constexpr const char ::util::detail::type_name_cstring::value[];
|
|
constexpr const char ::util::detail::type_name_const_cstring::value[];
|
|
|
|
constexpr const char ::util::detail::type_name_path::value[];
|