]> www.ginac.de Git - ginac.git/blobdiff - ginac/print.h
Prettified source code.
[ginac.git] / ginac / print.h
index 067c3b409bbe3620ae43dd91381e82573cc90586..d9406abb275efe38e7213de4ca902f4faf6a0a3f 100644 (file)
@@ -3,7 +3,7 @@
  *  Definition of helper classes for expression output. */
 
 /*
- *  GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2009 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
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __GINAC_PRINT_H__
-#define __GINAC_PRINT_H__
+#ifndef GINAC_PRINT_H
+#define GINAC_PRINT_H
+
+#include "class_info.h"
 
 #include <iosfwd>
-#include <string>
 #include <memory>
-
-#include "class_info.h"
+#include <string>
 
 namespace GiNaC {
 
-
 /** This class stores information about a registered print_context class. */
 class print_context_options {
 public:
@@ -216,7 +215,7 @@ private:
 template <class T, class C>
 class print_memfun_handler : public print_functor_impl {
 public:
-       typedef void (T::*F)(const C & c, unsigned level);
+       typedef void (T::*F)(const C & c, unsigned level) const;
 
        print_memfun_handler(F f_) : f(f_) {}
        print_memfun_handler *duplicate() const { return new print_memfun_handler(*this); }
@@ -247,7 +246,7 @@ public:
        print_functor(void f(const T &, const C &, unsigned)) : impl(new print_ptrfun_handler<T, C>(f)) {}
 
        template <class T, class C>
-       print_functor(void (T::*f)(const C &, unsigned)) : impl(new print_memfun_handler<T, C>(f)) {}
+       print_functor(void (T::*f)(const C &, unsigned) const) : impl(new print_memfun_handler<T, C>(f)) {}
 
        print_functor & operator=(const print_functor & other)
        {
@@ -272,4 +271,4 @@ private:
 
 } // namespace GiNaC
 
-#endif // ndef __GINAC_BASIC_H__
+#endif // ndef GINAC_BASIC_H