annotate src/Array-string.cc @ 2571:2480ef198c46

[project @ 1996-12-06 21:18:39 by jwe]
author jwe
date Fri, 06 Dec 1996 21:22:39 +0000
parents 8b51c1738882
children
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 /*
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 Copyright (C) 1993, 1994, 1995 John W. Eaton
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
4
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
6
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
7 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
8 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
9 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
10 later version.
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
11
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
12 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
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
14 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
15 for more details.
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
16
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
17 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
18 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
19 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
20
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 // Instantiate Arrays of Strings.
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
24
2571
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 1356
diff changeset
25 #ifdef HAVE_CONFIG_H
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 1356
diff changeset
26 #include <config.h>
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 1356
diff changeset
27 #endif
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 1356
diff changeset
28
1356
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
29 #include "Array.h"
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
30 #include "Array.cc"
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
31
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
32 #include "oct-str.h"
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 template class ArrayRep<Octave_string>;
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
35 template class Array<Octave_string>;
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
36
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
37 /*
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
38 ;;; Local Variables: ***
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
39 ;;; mode: C++ ***
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
40 ;;; page-delimiter: "^/\\*" ***
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
41 ;;; End: ***
8b51c1738882 [project @ 1995-09-05 20:08:49 by jwe]
jwe
parents:
diff changeset
42 */