X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Flst.h;h=27260d84aa5deec9a40db5b9e7b7f9b0c27c26ec;hp=415f961d72e5403482c875c6e8edea6594e96a61;hb=76e6124083a8054761c1bba9fea9afd71eacb9d8;hpb=5473c80815c979a31f70c36a8053b0cd89907375 diff --git a/ginac/lst.h b/ginac/lst.h index 415f961d..27260d84 100644 --- a/ginac/lst.h +++ b/ginac/lst.h @@ -3,7 +3,7 @@ * Definition of GiNaC's lst. */ /* - * GiNaC Copyright (C) 1999-2004 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2015 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,23 +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 */ -#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 unsigned lst::get_tinfo() { return TINFO_lst; } - /** Specialization of container::get_default_flags() for lst. */ template<> inline unsigned lst::get_default_flags() { return status_flags::not_shareable; } @@ -45,13 +42,8 @@ template<> inline char lst::get_close_delim() { return '}'; } // defined in lst.cpp template<> bool lst::info(unsigned inf) const; - -/** Specialization of is_exactly_a(obj) for lst objects. */ -template<> inline bool is_exactly_a(const basic & obj) -{ - return obj.tinfo() == TINFO_lst; -} +GINAC_DECLARE_UNARCHIVER(lst); } // namespace GiNaC -#endif // ndef __GINAC_LST_H__ +#endif // ndef GINAC_LST_H