]> www.ginac.de Git - ginac.git/blob - ginac/tostring.h
Put entire GiNaC documentation into @dircategory 'Mathematics' for info.
[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-2007 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23
24 #ifndef __GINAC_TOSTRING_H__
25 #define __GINAC_TOSTRING_H__
26
27 #include <sstream>
28
29 namespace GiNaC {
30
31 template<class T>
32 std::string ToString(const T & t)
33 {
34         std::ostringstream buf;
35         buf << t;
36         return buf.str();
37 }
38
39 } // namespace GiNaC
40
41 #endif // ndef __GINAC_TOSTRING_H__