annotate src/Array-string.cc @ 2173:b9cfacab52d1

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