annotate src/Array-os.cc @ 2887:4b71bb90c388

[project @ 1997-04-28 01:20:55 by jwe]
author jwe
date Mon, 28 Apr 1997 01:20:56 +0000
parents 8b262e771614
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1995
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
1 /*
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
2
2847
8b262e771614 [project @ 1997-03-27 16:18:26 by jwe]
jwe
parents: 2571
diff changeset
3 Copyright (C) 1996, 1997 John W. Eaton
1995
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
4
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
6
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
10 later version.
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
11
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
15 for more details.
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
16
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, write to the Free
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
20
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
21 */
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
22
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
23 // Instantiate Arrays of octave_stream objects.
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
24
2571
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 2082
diff changeset
25 #ifdef HAVE_CONFIG_H
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 2082
diff changeset
26 #include <config.h>
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 2082
diff changeset
27 #endif
2480ef198c46 [project @ 1996-12-06 21:18:39 by jwe]
jwe
parents: 2082
diff changeset
28
1995
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
29 #include "Array.h"
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
30 #include "Array.cc"
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
31
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
32 #include "oct-stream.h"
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
33
2082
7eeaad95315c [project @ 1996-04-25 03:18:15 by jwe]
jwe
parents: 1995
diff changeset
34 template class Array<scanf_format_elt*>;
7eeaad95315c [project @ 1996-04-25 03:18:15 by jwe]
jwe
parents: 1995
diff changeset
35
7eeaad95315c [project @ 1996-04-25 03:18:15 by jwe]
jwe
parents: 1995
diff changeset
36 template class Array<printf_format_elt*>;
7eeaad95315c [project @ 1996-04-25 03:18:15 by jwe]
jwe
parents: 1995
diff changeset
37
7eeaad95315c [project @ 1996-04-25 03:18:15 by jwe]
jwe
parents: 1995
diff changeset
38 template class Array<octave_stream*>;
1995
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
39
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
40 /*
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
41 ;;; Local Variables: ***
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
42 ;;; mode: C++ ***
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
43 ;;; End: ***
83432b801f03 [project @ 1996-03-03 01:45:43 by jwe]
jwe
parents:
diff changeset
44 */