X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Flst.cpp;h=4f414171f4776cb240925824145476bc99c01121;hp=0621ce68fd644e43cf4dd625c128d97c8dfa35d4;hb=eccdca0011fc44bc14cfcb7ffd82dbcb653e19a5;hpb=e8c6a2891bc68ca8f97a7d4b8bd0dd3ac322d982 diff --git a/ginac/lst.cpp b/ginac/lst.cpp index 0621ce68..4f414171 100644 --- a/ginac/lst.cpp +++ b/ginac/lst.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's lst. */ /* - * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2010 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 @@ -17,14 +17,15 @@ * * 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 */ #include "lst.h" +#include "archive.h" namespace GiNaC { -template <> GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(lst, basic, +template <> GINAC_IMPLEMENT_REGISTERED_CLASS_OPT_T(lst, basic, print_func(&lst::do_print). print_func(&lst::do_print_tree)) @@ -37,4 +38,6 @@ template <> bool lst::info(unsigned inf) const return inherited::info(inf); } +GINAC_BIND_UNARCHIVER(lst); + } // namespace GiNaC