2011-07-05 22:52:32 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-07-05 22:52:32 +10:00
|
|
|
*
|
2012-05-25 15:19:07 +10:00
|
|
|
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
2011-07-05 22:52:32 +10:00
|
|
|
*/
|
|
|
|
|
2012-05-25 15:19:07 +10:00
|
|
|
#include "string.hpp"
|
2011-07-05 22:52:32 +10:00
|
|
|
|
2012-05-25 15:19:07 +10:00
|
|
|
#define do_type_to_string(T) \
|
|
|
|
template <> std::string type_to_string <T> (void) { return #T; } \
|
|
|
|
template <> std::string type_to_string <const T> (void) { return "const " #T; }
|
2011-07-05 22:52:32 +10:00
|
|
|
|
2012-05-25 15:19:07 +10:00
|
|
|
do_type_to_string (float)
|
|
|
|
do_type_to_string (double)
|
2011-07-05 22:52:32 +10:00
|
|
|
|
2012-05-25 15:19:07 +10:00
|
|
|
do_type_to_string ( int8_t)
|
|
|
|
do_type_to_string ( int16_t)
|
|
|
|
do_type_to_string ( int32_t)
|
|
|
|
do_type_to_string ( int64_t)
|
2011-07-05 22:52:32 +10:00
|
|
|
|
2012-05-25 15:19:07 +10:00
|
|
|
do_type_to_string ( uint8_t)
|
|
|
|
do_type_to_string (uint16_t)
|
|
|
|
do_type_to_string (uint32_t)
|
|
|
|
do_type_to_string (uint64_t)
|
2011-07-05 22:52:32 +10:00
|
|
|
|