annotate src/SLStack-str.cc @ 2554:f7e3d23f0a8f

[project @ 1996-11-21 01:41:57 by jwe]
author jwe
date Thu, 21 Nov 1996 01:43:06 +0000
parents 003570e69c7b
children 2480ef198c46
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 /*
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 Copyright (C) 1996 John W. Eaton
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
4
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
6
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
7 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
8 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
9 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
10 later version.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
11
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
12 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
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
14 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
15 for more details.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
16
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
17 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
18 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
19 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
20
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 // Instantiate Stacks of string values.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
24
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
25 #include "SLStack.h"
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
26 #include "SLStack.cc"
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
27
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
28 #include <string>
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
29
1755
3a9462b655f1 [project @ 1996-01-22 04:47:22 by jwe]
jwe
parents: 1749
diff changeset
30 // 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
31
3a9462b655f1 [project @ 1996-01-22 04:47:22 by jwe]
jwe
parents: 1749
diff changeset
32 // template class SLNode<string>;
3a9462b655f1 [project @ 1996-01-22 04:47:22 by jwe]
jwe
parents: 1749
diff changeset
33 // template class SLList<string>;
1749
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
34 template class Stack<string>;
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
35 template class SLStack<string>;
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
36
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 ;;; Local Variables: ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
39 ;;; mode: C++ ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
40 ;;; End: ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
41 */