]> www.ginac.de Git - ginac.git/blob - ginac/structure.h
- minor cleanup
[ginac.git] / ginac / structure.h
1 /** @file structure.h
2  *
3  *  Interface to 'abstract' class structure. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2001 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_STRUCTURE_H__
24 #define __GINAC_STRUCTURE_H__
25
26 #include "basic.h"
27
28 namespace GiNaC {
29
30 struct registered_structure_info {
31         const char * name;
32 };
33
34 /** The class structure is used to implement user defined classes
35         with named members which behave similar to ordinary C structs.
36         structure is an 'abstract' base class (it is possible but not
37         meaningful to make instances), the user defined structures
38         will be create by the perl script structure.pl */
39
40 class structure : public basic
41 {
42         GINAC_DECLARE_REGISTERED_CLASS(structure, basic)
43         
44         // functions overriding virtual functions from base classes
45 public:
46         void print(const print_context & c, unsigned level=0) const;
47 protected:
48         bool is_equal_same_type(const basic & other) const;
49         
50         // non-virtual functions in this class
51 protected:
52         static std::vector<registered_structure_info> & registered_structures(void);
53 public:
54         static unsigned register_new(const char * nm);
55 };
56
57 } // namespace GiNaC
58
59 #endif // ndef __GINAC_STRUCTURE_H__