]> www.ginac.de Git - ginac.git/blob - ginac/fail.h
- corrected meaning of "GiNaC" acronym
[ginac.git] / ginac / fail.h
1 /** @file fail.h
2  *
3  *  Interface to class signaling failure of operation. Considered obsolete all
4  *  this stuff ought to be replaced by exceptions.
5  *
6  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #ifndef __GINAC_FAIL_H__
24 #define __GINAC_FAIL_H__
25
26 #include <ginac/basic.h>
27
28 class fail : public basic
29 {
30 // member functions
31
32     // default constructor, destructor, copy constructor assignment operator and helpers
33 public:
34     fail();
35     ~fail();
36     fail(fail const & other);
37     fail const & operator=(fail const & other);
38 protected:
39     void copy(fail const & other);
40     void destroy(bool call_parent);
41
42     // other constructors
43     // none
44
45     // functions overriding virtual functions from bases classes
46 public:
47     basic * duplicate() const;
48     void printraw(ostream & os) const;
49     void print(ostream & os, unsigned upper_precedence=0) const;
50 protected:
51     int compare_same_type(basic const & other) const;
52     unsigned return_type(void) const { return return_types::noncommutative_composite; };
53     
54     // new virtual functions which can be overridden by derived classes
55     // none
56
57     // non-virtual functions in this class
58     // none
59
60 // member variables
61 // none
62 };
63
64 // global constants
65
66 extern const fail some_fail;
67 extern type_info const & typeid_fail;
68
69 #endif // ndef __GINAC_FAIL_H__
70
71