X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Flst.cpp;h=e4164c68c1d58a7c64ca431e5de2106e9ad12ed3;hp=97e793e4bde043e1dd533e54c379236aba4a7a04;hb=8cffcdf13d817a47f217f1a1043317d95969e070;hpb=757406e244f4f257aafaa0f355d5376122cea10e diff --git a/ginac/lst.cpp b/ginac/lst.cpp index 97e793e4..e4164c68 100644 --- a/ginac/lst.cpp +++ b/ginac/lst.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's lst. */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2019 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,17 +17,20 @@ * * 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(lst, basic) +template <> GINAC_IMPLEMENT_REGISTERED_CLASS_OPT_T(lst, basic, + print_func(&lst::do_print). + print_func(&lst::do_print_tree)) /** Specialization of container::info() for lst. */ -bool lst::info(unsigned inf) const +template <> bool lst::info(unsigned inf) const { if (inf == info_flags::list) return true; @@ -35,4 +38,6 @@ bool lst::info(unsigned inf) const return inherited::info(inf); } +GINAC_BIND_UNARCHIVER(lst); + } // namespace GiNaC