lyx_mirror/src/support/tostr.h
Jean-Marc Lasgouttes de9240227b make LyX/Mac compile and work better
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8321 a592a061-630c-0410-9148-cb99ea01b6c8
2004-01-07 16:40:30 +00:00

36 lines
755 B
C++

// -*- C++ -*-
/**
* \file tostr.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* 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 <string>
/// convert things to strings
std::string const tostr(bool b);
///
std::string const tostr(int);
///
std::string const tostr(unsigned int);
///
std::string const tostr(long int);
///
std::string const tostr(double);
///
std::string const tostr(std::string const & s);
///
std::string const tostr(long unsigned int);
#endif