]> www.ginac.de Git - ginac.git/blob - ginac/tostring.h
- configure.in: bumped up version.
[ginac.git] / ginac / tostring.h
1 /** @file tostring.h
2  *
3  *  Convert object to its string representation (output form). This is an
4  *  internal header file. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #ifndef __GINAC_TOSTRING_H__
25 #define __GINAC_TOSTRING_H__
26
27 #include "config.h"
28
29 #if defined(HAVE_SSTREAM)
30 #include <sstream>
31 #elif defined(HAVE_STRSTREAM)
32 #include <strstream>
33 #else
34 #error Need either sstream or strstream
35 #endif
36
37 namespace GiNaC {
38
39 // This should be obsoleted once <sstream> is widely deployed.
40 template<class T>
41 std::string ToString(const T & t)
42 {
43 #if defined(HAVE_SSTREAM)
44         std::ostringstream buf;
45         buf << t << std::ends;
46         return buf.str();
47 #else
48         char buf[256];
49         std::ostrstream(buf,sizeof(buf)) << t << std::ends;
50         return buf;
51 #endif
52 }
53
54 } // namespace GiNaC
55
56 #endif // ndef __GINAC_TOSTRING_H__