X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Flst.h;h=d6a45c15e9111dd82c5b78931c564ff2287e65fe;hp=332579f566b8bc832b1390a3fd9046f7e0e66fe9;hb=5fb83676210401cc08fae91831514bac44502209;hpb=83a7ee99a947cbbf331018b803ad6be43a9ccd45 diff --git a/ginac/lst.h b/ginac/lst.h index 332579f5..d6a45c15 100644 --- a/ginac/lst.h +++ b/ginac/lst.h @@ -3,7 +3,7 @@ * Definition of GiNaC's lst. */ /* - * GiNaC Copyright (C) 1999-2008 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 @@ -20,20 +20,17 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __GINAC_LST_H__ -#define __GINAC_LST_H__ - -#include +#ifndef GINAC_LST_H +#define GINAC_LST_H #include "container.h" +#include + namespace GiNaC { typedef container lst; -/** Specialization of container::get_tinfo() for lst. */ -template<> inline tinfo_t lst::get_tinfo() { return &lst::tinfo_static; } - /** Specialization of container::get_default_flags() for lst. */ template<> inline unsigned lst::get_default_flags() { return status_flags::not_shareable; } @@ -45,7 +42,8 @@ template<> inline char lst::get_close_delim() { return '}'; } // defined in lst.cpp template<> bool lst::info(unsigned inf) const; +GINAC_DECLARE_UNARCHIVER(lst); } // namespace GiNaC -#endif // ndef __GINAC_LST_H__ +#endif // ndef GINAC_LST_H