annotate src/SLStack-ue.cc @ 2288:039cda4dc95a

[project @ 1996-06-05 23:21:52 by jwe] Initial revision
author jwe
date Wed, 05 Jun 1996 23:21:52 +0000
parents 003570e69c7b
children 2480ef198c46
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
1884
e62277bf5fe0 [project @ 1996-02-05 18:17:59 by jwe]
jwe
parents: 1315
diff changeset
3 Copyright (C) 1996 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 Stacks of unwind_elem values.
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
24
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
25 #include "SLStack.h"
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
26 #include "SLStack.cc"
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
27
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
28 #include "unwind-prot.h"
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
29
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
30 template class SLNode<unwind_elem>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
31 template class SLList<unwind_elem>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
32 template class Stack<unwind_elem>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
33 template class SLStack<unwind_elem>;
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
34
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
35 /*
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
36 ;;; Local Variables: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
37 ;;; mode: C++ ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
38 ;;; End: ***
daf899e42dfc [project @ 1994-10-02 15:13:26 by jwe]
jwe
parents:
diff changeset
39 */