1 /********************************************************************/
2 /*                                                                  */
3 /*  s7   Seed7 interpreter                                          */
4 /*  Copyright (C) 1990 - 2008  Thomas Mertes                        */
5 /*                                                                  */
6 /*  This program is free software; you can redistribute it and/or   */
7 /*  modify it under the terms of the GNU General Public License as  */
8 /*  published by the Free Software Foundation; either version 2 of  */
9 /*  the License, or (at your option) any later version.             */
10 /*                                                                  */
11 /*  This program is distributed in the hope that it will be useful, */
12 /*  but WITHOUT ANY WARRANTY; without even the implied warranty of  */
13 /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   */
14 /*  GNU General Public License for more details.                    */
15 /*                                                                  */
16 /*  You should have received a copy of the GNU General Public       */
17 /*  License along with this program; if not, write to the           */
18 /*  Free Software Foundation, Inc., 51 Franklin Street,             */
19 /*  Fifth Floor, Boston, MA  02110-1301, USA.                       */
20 /*                                                                  */
21 /*  Module: Library                                                 */
22 /*  File: seed7/src/typlib.h                                        */
23 /*  Changes: 1993, 1994, 1999, 2000  Thomas Mertes                  */
24 /*  Content: All primitive actions for the type type.               */
25 /*                                                                  */
26 /********************************************************************/
27 
28 objectType typ_addinterface       (listType arguments);
29 objectType typ_cmp                (listType arguments);
30 objectType typ_cpy                (listType arguments);
31 objectType typ_create             (listType arguments);
32 objectType typ_destr              (listType arguments);
33 objectType typ_eq                 (listType arguments);
34 objectType typ_func               (listType arguments);
35 objectType typ_gensub             (listType arguments);
36 objectType typ_gentype            (listType arguments);
37 objectType typ_hashcode           (listType arguments);
38 objectType typ_isdeclared         (listType arguments);
39 objectType typ_isderived          (listType arguments);
40 objectType typ_isforward          (listType arguments);
41 objectType typ_isfunc             (listType arguments);
42 objectType typ_isvarfunc          (listType arguments);
43 objectType typ_matchobj           (listType arguments);
44 objectType typ_meta               (listType arguments);
45 objectType typ_ne                 (listType arguments);
46 objectType typ_num                (listType arguments);
47 objectType typ_result             (listType arguments);
48 objectType typ_set_in_param_ref   (listType arguments);
49 objectType typ_set_in_param_value (listType arguments);
50 objectType typ_str                (listType arguments);
51 objectType typ_value              (listType arguments);
52 objectType typ_varconv            (listType arguments);
53 objectType typ_varfunc            (listType arguments);
54