lyx_mirror/src/support/convert.h

65 lines
1.3 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file tostr.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Andr<EFBFBD> P<EFBFBD>nitz
* \author Lars Gullik Bj<EFBFBD>nnes
*
* Full author contact details are available in file CREDITS.
*
* A collection of string helper functions that works with string.
* Some of these would certainly benefit from a rewrite/optimization.
*/
#ifndef TOSTR_H
#define TOSTR_H
#include <boost/static_assert.hpp>
#include <string>
#if 0
// Commented out since BOOST_STATIC_ASSERT does not work with gcc 4.0
template <class Target, class Source>
Target convert(Source arg)
{
// We use a static assert here since we want all instances of
// this template to be specializations.
BOOST_STATIC_ASSERT(sizeof(bool) == 0);
return Target();
}
#else
template <class Target, class Source>
Target convert(Source arg);
#endif
template<>
std::string convert<std::string>(bool);
template<>
std::string convert<std::string>(char);
template<>
std::string convert<std::string>(unsigned short);
template<>
std::string convert<std::string>(int);
template<>
std::string convert<std::string>(unsigned int);
template<>
std::string convert<std::string>(float);
template<>
std::string convert<std::string>(double);
template<>
std::string convert<std::string>(std::string);
#endif