annotate src/SLList-misc.cc @ 2875:2e45e7a3d45e

[project @ 1997-04-24 08:56:20 by jwe]
author jwe
date Thu, 24 Apr 1997 08:57:09 +0000
parents 8b262e771614
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
1 /*
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
2
2847
8b262e771614 [project @ 1997-03-27 16:18:26 by jwe]
jwe
parents: 2846
diff changeset
3 Copyright (C) 1996, 1997 John W. Eaton
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
4
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
6
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
10 later version.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
11
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
15 for more details.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
16
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, write to the Free
1315
611d403c7f3d [project @ 1995-06-25 19:56:32 by jwe]
jwe
parents: 1009
diff changeset
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
20
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
21 */
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
22
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
23 // Instantiate Lists of various values.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
24
1429
245206fbed64 [project @ 1995-09-19 06:58:46 by jwe]
jwe
parents: 1315
diff changeset
25 #ifdef HAVE_CONFIG_H
245206fbed64 [project @ 1995-09-19 06:58:46 by jwe]
jwe
parents: 1315
diff changeset
26 #include <config.h>
245206fbed64 [project @ 1995-09-19 06:58:46 by jwe]
jwe
parents: 1315
diff changeset
27 #endif
245206fbed64 [project @ 1995-09-19 06:58:46 by jwe]
jwe
parents: 1315
diff changeset
28
2571
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 2370
diff changeset
29 #include "SLList.h"
2580
fa7dd5fc7c59 [project @ 1996-12-10 06:30:41 by jwe]
jwe
parents: 2571
diff changeset
30 #include "SLList.cc"
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
31
2875
2e45e7a3d45e [project @ 1997-04-24 08:56:20 by jwe]
jwe
parents: 2847
diff changeset
32 #include "ov.h"
1742
a02f140ed897 [project @ 1996-01-12 11:09:39 by jwe]
jwe
parents: 1429
diff changeset
33 #include "pt-exp.h"
2370
a45c7d64b5e3 [project @ 1996-10-11 23:51:15 by jwe]
jwe
parents: 1996
diff changeset
34 #include "ov.h"
1742
a02f140ed897 [project @ 1996-01-12 11:09:39 by jwe]
jwe
parents: 1429
diff changeset
35 #include "pt-misc.h"
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
36
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
37 template class SLNode<tree_statement *>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
38 template class SLList<tree_statement *>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
39
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
40 template class SLNode<tree_if_clause *>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
41 template class SLList<tree_if_clause *>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
42
2764
2c0f259cf83d [project @ 1997-03-01 02:30:26 by jwe]
jwe
parents: 2580
diff changeset
43 template class SLList<tree_switch_case *>;
2c0f259cf83d [project @ 1997-03-01 02:30:26 by jwe]
jwe
parents: 2580
diff changeset
44 template class SLNode<tree_switch_case *>;
2c0f259cf83d [project @ 1997-03-01 02:30:26 by jwe]
jwe
parents: 2580
diff changeset
45
2846
52e7c4509983 [project @ 1997-03-26 23:27:35 by jwe]
jwe
parents: 2764
diff changeset
46 template class SLList<tree_decl_elt *>;
52e7c4509983 [project @ 1997-03-26 23:27:35 by jwe]
jwe
parents: 2764
diff changeset
47 template class SLNode<tree_decl_elt *>;
754
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
48
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
49 /*
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
50 ;;; Local Variables: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
51 ;;; mode: C++ ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
52 ;;; End: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
53 */