X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Ffail.cpp;h=f7b260c5706a72cdeb937781765ede5fc31a2167;hb=cd22e73d44e3320898f62a0accdbbe005b33d3e5;hp=fc539ab5f7f6a9680f146d03c1e8771077cd11da;hpb=dbd9c306a74f1cb258c0d15a346b973b39deaad2;p=ginac.git diff --git a/ginac/fail.cpp b/ginac/fail.cpp index fc539ab5..f7b260c5 100644 --- a/ginac/fail.cpp +++ b/ginac/fail.cpp @@ -4,7 +4,7 @@ * somewhat obsolete (most of this can be replaced by exceptions). */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2016 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 @@ -18,37 +18,37 @@ * * 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 - #include "fail.h" -#include "print.h" #include "archive.h" #include "utils.h" +#include + namespace GiNaC { -GINAC_IMPLEMENT_REGISTERED_CLASS(fail, basic) +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fail, basic, + print_func(&fail::do_print). + print_func(&fail::do_print_tree)) ////////// -// default ctor, dtor, copy ctor, assignment operator and helpers +// default constructor ////////// -DEFAULT_CTORS(fail) +DEFAULT_CTOR(fail) ////////// // archiving ////////// -DEFAULT_ARCHIVING(fail) - ////////// // functions overriding virtual functions from base classes ////////// DEFAULT_COMPARE(fail) DEFAULT_PRINT(fail, "FAIL") +GINAC_BIND_UNARCHIVER(fail); } // namespace GiNaC