annotate liboctave/Array-so.cc @ 5103:e2ed74b9bfa0 after-gnuplot-split

[project @ 2004-12-28 02:43:01 by jwe]
author jwe
date Tue, 28 Dec 2004 02:43:01 +0000
parents dca0236ad77c
children 4c8a2e4e0717
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
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
3 Copyright (C) 2003 John W. Eaton
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
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
10 later version.
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
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, write to the Free
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
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
dca0236ad77c [project @ 2003-11-23 19:36:33 by jwe]
jwe
parents:
diff changeset
32 INSTANTIATE_ARRAY_AND_ASSIGN (std::streamoff);
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 */