annotate src/SLStack-str.cc @ 1755:3a9462b655f1

[project @ 1996-01-22 04:47:22 by jwe]
author jwe
date Mon, 22 Jan 1996 04:47:22 +0000
parents c7f5599eb177
children 003570e69c7b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1749
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
1 // SLStack-str.cc -*- C++ -*-
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
2 /*
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
3
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
4 Copyright (C) 1996 John W. Eaton
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
5
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
7
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
11 later version.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
12
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
16 for more details.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
17
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
19 along with Octave; see the file COPYING. If not, write to the Free
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
21
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
22 */
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
23
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
24 // Instantiate Stacks of string values.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
25
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
26 #include "SLStack.h"
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
27 #include "SLStack.cc"
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
28
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
29 #include <string>
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
30
1755
3a9462b655f1 [project @ 1996-01-22 04:47:22 by jwe]
jwe
parents: 1749
diff changeset
31 // We already have SLList<string>, so we don't need to make them here.
3a9462b655f1 [project @ 1996-01-22 04:47:22 by jwe]
jwe
parents: 1749
diff changeset
32
3a9462b655f1 [project @ 1996-01-22 04:47:22 by jwe]
jwe
parents: 1749
diff changeset
33 // template class SLNode<string>;
3a9462b655f1 [project @ 1996-01-22 04:47:22 by jwe]
jwe
parents: 1749
diff changeset
34 // template class SLList<string>;
1749
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
35 template class Stack<string>;
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
36 template class SLStack<string>;
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
37
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
38 /*
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
39 ;;; Local Variables: ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
40 ;;; mode: C++ ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
41 ;;; page-delimiter: "^/\\*" ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
42 ;;; End: ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
43 */