X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fwildcard.h;h=a97e4910e23ff0e5da103402627b5deadb96a637;hp=ba4141243638ba0c2b39d265d167192d996a6f22;hb=c7299e51d5ecf61b5d85bdfeb9a2db536abf18bb;hpb=67467d256b44f5e08498ca81c946d9ffaa25d1e2 diff --git a/ginac/wildcard.h b/ginac/wildcard.h index ba414124..a97e4910 100644 --- a/ginac/wildcard.h +++ b/ginac/wildcard.h @@ -3,7 +3,7 @@ * Interface to GiNaC's wildcard objects. */ /* - * GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2009 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,14 +20,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __GINAC_WILDCARD_H__ -#define __GINAC_WILDCARD_H__ +#ifndef GINAC_WILDCARD_H +#define GINAC_WILDCARD_H #include "ex.h" +#include "archive.h" namespace GiNaC { - /** This class acts as a wildcard for subs(), match(), has() and find(). An * integer label is used to identify different wildcards. */ class wildcard : public basic @@ -41,8 +41,12 @@ public: // functions overriding virtual functions from base classes public: - bool match(const ex & pattern, lst & repl_lst) const; + bool match(const ex & pattern, exmap& repl_lst) const; + /** Save (a.k.a. serialize) object into archive. */ + void archive(archive_node& n) const; + /** Read (a.k.a. deserialize) object from archive. */ + void read_archive(const archive_node& n, lst& syms); protected: unsigned calchash() const; @@ -59,6 +63,7 @@ protected: private: unsigned label; /**< Label used to distinguish different wildcards */ }; +GINAC_DECLARE_UNARCHIVER(wildcard); // utility functions @@ -74,4 +79,4 @@ bool haswild(const ex & x); } // namespace GiNaC -#endif // ndef __GINAC_WILDCARD_H__ +#endif // ndef GINAC_WILDCARD_H