annotate src/SLList-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 5f1938919fdc
children e62277bf5fe0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1754
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
1 // SLList-str.cc -*- C++ -*-
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
2 /*
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
3
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
4 Copyright (C) 1993, 1994, 1995 John W. Eaton
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
5
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
7
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
11 later version.
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
12
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
16 for more details.
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
17
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
19 along with Octave; see the file COPYING. If not, write to the Free
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
21
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
22 */
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
23
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
24 // Instantiate Lists of strings.
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
25
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
26 #ifdef HAVE_CONFIG_H
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
27 #include <config.h>
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
28 #endif
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
29
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
30 #include <SLList.h>
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
31
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
32 #include <string>
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
33
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
34 template class SLNode<string>;
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
35 template class SLList<string>;
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
36
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
37 /*
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
38 ;;; Local Variables: ***
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
39 ;;; mode: C++ ***
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
40 ;;; page-delimiter: "^/\\*" ***
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
41 ;;; End: ***
5f1938919fdc [project @ 1996-01-22 04:47:00 by jwe]
jwe
parents:
diff changeset
42 */