]> www.ginac.de Git - ginac.git/blobdiff - ginac/print.cpp
- prepared for 1.0.13 release
[ginac.git] / ginac / print.cpp
index bd365cfe794524c59ed85ca01fdb6aa4e23c3025..606e5e16cbc20ef30f5af8e4f82e535ad3779d64 100644 (file)
@@ -3,7 +3,7 @@
  *  Implementation of helper classes for expression output. */
 
 /*
- *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -36,6 +36,16 @@ print_latex::print_latex()
 print_latex::print_latex(std::ostream & os)
        : print_context(os) {}
 
+print_python::print_python()
+       : print_context(std::cout) {}
+print_python::print_python(std::ostream & os)
+       : print_context(os) {}
+
+print_python_repr::print_python_repr()
+       : print_context(std::cout) {}
+print_python_repr::print_python_repr(std::ostream & os)
+       : print_context(os) {}
+
 print_tree::print_tree(unsigned d)
        : print_context(std::cout), delta_indent(d) {}
 print_tree::print_tree(std::ostream & os, unsigned d)