annotate liboctave/Array-so.cc @ 7091:5608935ff522 ss-2-9-16

[project @ 2007-10-31 21:26:39 by jwe]
author jwe
date Wed, 31 Oct 2007 21:29:24 +0000
parents a1dbe9d80eee
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4648
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
1 /*
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
2
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
3 Copyright (C) 2003, 2005, 2007 John W. Eaton
4648
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
4
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
6
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6708
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6708
diff changeset
10 option) any later version.
4648
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
11
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
15 for more details.
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
16
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6708
diff changeset
18 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6708
diff changeset
19 <http://www.gnu.org/licenses/>.
4648
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
20
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
21 */
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
22
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
23 #ifdef HAVE_CONFIG_H
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
24 #include <config.h>
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
25 #endif
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
26
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
27 // Instantiate Arrays of std::streamoff values.
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
28
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
29 #include "Array.h"
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
30 #include "Array.cc"
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
31
6708
0ce71beb1cf3 [project @ 2007-06-13 06:40:48 by jwe]
jwe
parents: 5307
diff changeset
32 INSTANTIATE_ARRAY_AND_ASSIGN (std::streamoff, OCTAVE_API);
4648
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
33
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
34 #include "Array2.h"
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
35
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
36 template class Array2<std::streamoff>;
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
37
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
38 #include "ArrayN.h"
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
39 #include "ArrayN.cc"
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
40
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
41 template class ArrayN<std::streamoff>;
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
42
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
43 /*
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
44 ;;; Local Variables: ***
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
45 ;;; mode: C++ ***
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
46 ;;; End: ***
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
47 */