X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffail.cpp;h=3818538f90a810587dd1d945fa0bf7234b2542c3;hp=bc75c47e9b224b13230c2cde45b6728f88913d3f;hb=5a819981450798bd5702ed4352c48adf51ee4ab3;hpb=26741891dadf23162799009b6fd57b4984bd4ce5 diff --git a/ginac/fail.cpp b/ginac/fail.cpp index bc75c47e..3818538f 100644 --- a/ginac/fail.cpp +++ b/ginac/fail.cpp @@ -4,7 +4,7 @@ * obsolete all this stuff ought to be replaced by exceptions. */ /* - * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2001 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 @@ -22,121 +22,32 @@ */ #include "fail.h" +#include "print.h" +#include "archive.h" #include "debugmsg.h" +#include "utils.h" -#ifndef NO_GINAC_NAMESPACE namespace GiNaC { -#endif // ndef NO_GINAC_NAMESPACE -////////// -// default constructor, destructor, copy constructor assignment operator and helpers -////////// - -// public - -fail::fail() : basic(TINFO_fail) -{ - debugmsg("fail default constructor",LOGLEVEL_CONSTRUCT); -} - -fail::~fail() -{ - debugmsg("fail destructor",LOGLEVEL_DESTRUCT); - destroy(0); -} - -fail::fail(fail const & other) -{ - debugmsg("fail copy constructor",LOGLEVEL_CONSTRUCT); - copy(other); -} - -fail const & fail::operator=(fail const & other) -{ - debugmsg("fail operator=",LOGLEVEL_ASSIGNMENT); - if (this != &other) { - destroy(1); - copy(other); - } - return *this; -} - -// protected - -void fail::copy(fail const & other) -{ - basic::copy(other); -} - -void fail::destroy(bool call_parent) -{ - if (call_parent) basic::destroy(call_parent); -} - - -////////// -// other constructors -////////// - -// none +GINAC_IMPLEMENT_REGISTERED_CLASS(fail, basic) ////////// -// functions overriding virtual functions from bases classes +// default ctor, dtor, copy ctor assignment operator and helpers ////////// -// public - -basic * fail::duplicate() const -{ - debugmsg("fail duplicate",LOGLEVEL_DUPLICATE); - return new fail(*this); -} - -void fail::print(ostream & os, unsigned upper_precedence) const -{ - debugmsg("fail print",LOGLEVEL_PRINT); - os << "FAIL"; -} - -void fail::printraw(ostream & os) const -{ - debugmsg("fail printraw",LOGLEVEL_PRINT); - os << "FAIL"; -} - -// protected - -int fail::compare_same_type(basic const & other) const -{ - // two fails are always identical - return 0; -} +DEFAULT_CTORS(fail) ////////// -// new virtual functions which can be overridden by derived classes +// archiving ////////// -// none +DEFAULT_ARCHIVING(fail) ////////// -// non-virtual functions in this class -////////// - -// none - -////////// -// static member variables -////////// - -// none - -////////// -// global constants +// functions overriding virtual functions from bases classes ////////// -const fail some_fail; -type_info const & typeid_fail=typeid(some_fail); +DEFAULT_COMPARE(fail) +DEFAULT_PRINT(fail, "FAIL") -#ifndef NO_GINAC_NAMESPACE } // namespace GiNaC -#endif // ndef NO_GINAC_NAMESPACE