]> www.ginac.de Git - ginac.git/blobdiff - ginac/print.h
* Added output-support for Python bindings and LaTeX printing for
[ginac.git] / ginac / print.h
index 1d99639ea38f0f7d4adb9cd6c251584dfad51356..3e55db5d7fde5e7bd86ffcfc3bbe5533fe0bf706 100644 (file)
@@ -49,6 +49,22 @@ public:
        print_latex(std::ostream &);
 };
 
+/** Context for python pretty-print output. */
+class print_python : public print_context
+{
+public:
+       print_python();
+       print_python(std::ostream &);
+};
+
+/** Context for python-parsable output. */
+class print_python_repr : public print_context
+{
+public:
+       print_python_repr();
+       print_python_repr(std::ostream &);
+};
+
 /** Context for tree-like output for debugging. */
 class print_tree : public print_context
 {