X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Flst.h;h=332579f566b8bc832b1390a3fd9046f7e0e66fe9;hp=a9de75d3497d3562e4fe61d856a028fbe92bacbc;hb=37c418c602485be9b023378a1b60ebdb4a592f2a;hpb=4aaa6006a9408999aa4fe336a14180035aa8c791 diff --git a/ginac/lst.h b/ginac/lst.h index a9de75d3..332579f5 100644 --- a/ginac/lst.h +++ b/ginac/lst.h @@ -3,7 +3,7 @@ * Definition of GiNaC's lst. */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2008 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,7 +17,7 @@ * * 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__ @@ -32,26 +32,20 @@ namespace GiNaC { typedef container lst; /** Specialization of container::get_tinfo() for lst. */ -inline unsigned lst::get_tinfo() { return TINFO_lst; } +template<> inline tinfo_t lst::get_tinfo() { return &lst::tinfo_static; } /** Specialization of container::get_default_flags() for lst. */ -inline unsigned lst::get_default_flags() { return status_flags::not_shareable; } +template<> inline unsigned lst::get_default_flags() { return status_flags::not_shareable; } /** Specialization of container::get_open_delim() for lst. */ -inline char lst::get_open_delim() { return '{'; } +template<> inline char lst::get_open_delim() { return '{'; } /** Specialization of container::get_close_delim() for lst. */ -inline char lst::get_close_delim() { return '}'; } +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; -} - } // namespace GiNaC #endif // ndef __GINAC_LST_H__