From: Christian Bauer Date: Wed, 27 Jun 2001 00:32:25 +0000 (+0000) Subject: moved ToString() here from utils.h X-Git-Tag: release_0-9-1~7 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=b5ef48a4ee8270d3b8f029ec739e00d9691367c7;hp=aa6281216091efd92dc5fcc3f96c7189114e80f1;ds=sidebyside moved ToString() here from utils.h --- diff --git a/ginac/tostring.h b/ginac/tostring.h new file mode 100644 index 00000000..c82813bf --- /dev/null +++ b/ginac/tostring.h @@ -0,0 +1,56 @@ +/** @file tostring.h + * + * Convert object to its string representation (output form). This is an + * internal header file. */ + +/* + * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef __GINAC_TOSTRING_H__ +#define __GINAC_TOSTRING_H__ + +#include "config.h" + +#if defined(HAVE_SSTREAM) +#include +#elif defined(HAVE_STRSTREAM) +#include +#else +#error Need either sstream or strstream +#endif + +namespace GiNaC { + +// This should be obsoleted once is widely deployed. +template +std::string ToString(const T & t) +{ +#if defined(HAVE_SSTREAM) + std::ostringstream buf; + buf << t << std::ends; + return buf.str(); +#else + char buf[256]; + std::ostrstream(buf,sizeof(buf)) << t << std::ends; + return buf; +#endif +} + +} // namespace GiNaC + +#endif // ndef __GINAC_TOSTRING_H__