]> www.ginac.de Git - ginac.git/blob - ginac/print.h
* Headers only include <iosfwd> from now on, since that contains all the
[ginac.git] / ginac / print.h
1 /** @file print.h
2  *
3  *  Definition of helper classes for expression output. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #ifndef __GINAC_PRINT_H__
24 #define __GINAC_PRINT_H__
25
26 #include <iosfwd>
27 #include <string>
28
29 namespace GiNaC {
30
31 /** Context for default (ginsh-parsable) output. */
32 class print_context
33 {
34 public:
35         print_context();
36         print_context(std::ostream &);
37
38         std::ostream & s; /**< stream to output to */
39 private:
40         // dummy virtual function to make the class polymorphic
41         virtual void dummy(void) {}
42 };
43
44 /** Context for latex-parsable output. */
45 class print_latex : public print_context
46 {
47 public:
48         print_latex();
49         print_latex(std::ostream &);
50 };
51
52 /** Context for tree-like output for debugging. */
53 class print_tree : public print_context
54 {
55 public:
56         print_tree(unsigned d = 4);
57         print_tree(std::ostream &, unsigned d = 4);
58         const unsigned delta_indent; /**< size of indentation step */
59 };
60
61 /** Base context for C source output. */
62 class print_csrc : public print_context
63 {
64 public:
65         print_csrc();
66         print_csrc(std::ostream &);
67 };
68
69 /** Context for C source output using float numbers. */
70 class print_csrc_float : public print_csrc
71 {
72 public:
73         print_csrc_float();
74         print_csrc_float(std::ostream &);
75 };
76
77 /** Context for C source output using double numbers. */
78 class print_csrc_double : public print_csrc
79 {
80 public:
81         print_csrc_double();
82         print_csrc_double(std::ostream &);
83 };
84
85 /** Context for C source output using CLN numbers. */
86 class print_csrc_cl_N : public print_csrc
87 {
88 public:
89         print_csrc_cl_N();
90         print_csrc_cl_N(std::ostream &);
91 };
92
93 /** Check if obj is a T, including base classes. */
94 template <class T>
95 inline bool is_a(const print_context & obj)
96 { return dynamic_cast<const T *>(&obj)!=0; }
97
98 } // namespace GiNaC
99
100 #endif // ndef __GINAC_BASIC_H__