lyx_mirror/src/support/convert.C
Lars Gullik Bjønnes 342cdf4322 the convert patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9538 a592a061-630c-0410-9148-cb99ea01b6c8
2005-01-27 21:05:44 +00:00

121 lines
1.6 KiB
C

/**
* \file tostr.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "convert.h"
#include <boost/lexical_cast.hpp>
#include <string>
using boost::lexical_cast;
using std::string;
template<>
string convert<string>(bool b)
{
return (b ? "true" : "false");
}
template<>
string convert<string>(char c)
{
return string(1, c);
}
template<>
string convert<string>(short unsigned int sui)
{
return lexical_cast<string>(sui);
}
template<>
string convert<string>(int i)
{
return lexical_cast<string>(i);
}
template<>
string convert<string>(unsigned int ui)
{
return lexical_cast<string>(ui);
}
template<>
string convert<string>(unsigned long ul)
{
return lexical_cast<string>(ul);
}
template<>
string convert<string>(long l)
{
return lexical_cast<string>(l);
}
template<>
string convert<string>(float f)
{
return lexical_cast<string>(f);
}
template<>
string convert<string>(double d)
{
return lexical_cast<string>(d);
}
template<>
int convert<int>(string const s)
{
return strtol(s.c_str(), 0, 10);
}
template<>
unsigned int convert<unsigned int>(string const s)
{
return strtoul(s.c_str(), 0, 10);
}
template<>
double convert<double>(string const s)
{
return strtod(s.c_str(), 0);
}
template<>
int convert<int>(char const * cptr)
{
return strtol(cptr, 0, 10);
}
template<>
double convert<double>(char const * cptr)
{
return strtod(cptr, 0);
}