]> www.ginac.de Git - ginac.git/blob - ginac/print.h
4010d38d1d2b73a84e9e91c46c9c975922eca193
[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-2003 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 &, unsigned options = 0);
37
38         std::ostream & s; /**< stream to output to */
39         unsigned options; /**< option flags */
40 private:
41         // dummy virtual function to make the class polymorphic
42         virtual void dummy(void) {}
43 };
44
45 /** Context for latex-parsable output. */
46 class print_latex : public print_context
47 {
48 public:
49         print_latex();
50         print_latex(std::ostream &, unsigned options = 0);
51 };
52
53 /** Context for python pretty-print output. */
54 class print_python : public print_context
55 {
56 public:
57         print_python();
58         print_python(std::ostream &, unsigned options = 0);
59 };
60
61 /** Context for python-parsable output. */
62 class print_python_repr : public print_context
63 {
64 public:
65         print_python_repr();
66         print_python_repr(std::ostream &, unsigned options = 0);
67 };
68
69 /** Context for tree-like output for debugging. */
70 class print_tree : public print_context
71 {
72 public:
73         print_tree(unsigned d = 4);
74         print_tree(std::ostream &, unsigned options = 0, unsigned d = 4);
75         const unsigned delta_indent; /**< size of indentation step */
76 };
77
78 /** Base context for C source output. */
79 class print_csrc : public print_context
80 {
81 public:
82         print_csrc();
83         print_csrc(std::ostream &, unsigned options = 0);
84 };
85
86 /** Context for C source output using float numbers. */
87 class print_csrc_float : public print_csrc
88 {
89 public:
90         print_csrc_float();
91         print_csrc_float(std::ostream &, unsigned options = 0);
92 };
93
94 /** Context for C source output using double numbers. */
95 class print_csrc_double : public print_csrc
96 {
97 public:
98         print_csrc_double();
99         print_csrc_double(std::ostream &, unsigned options = 0);
100 };
101
102 /** Context for C source output using CLN numbers. */
103 class print_csrc_cl_N : public print_csrc
104 {
105 public:
106         print_csrc_cl_N();
107         print_csrc_cl_N(std::ostream &, unsigned options = 0);
108 };
109
110 /** Check if obj is a T, including base classes. */
111 template <class T>
112 inline bool is_a(const print_context & obj)
113 { return dynamic_cast<const T *>(&obj)!=0; }
114
115 } // namespace GiNaC
116
117 #endif // ndef __GINAC_BASIC_H__