757
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
757
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
5307
|
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
20 02110-1301, USA. |
757
|
21 |
|
22 */ |
|
23 |
2006
|
24 #ifdef HAVE_CONFIG_H |
|
25 #include <config.h> |
|
26 #endif |
|
27 |
757
|
28 // Instantiate Arrays of double values. |
|
29 |
|
30 #include "Array.h" |
|
31 #include "Array.cc" |
|
32 |
4594
|
33 INSTANTIATE_ARRAY_AND_ASSIGN (double); |
757
|
34 |
4594
|
35 INSTANTIATE_ARRAY_ASSIGN (double, int); |
|
36 INSTANTIATE_ARRAY_ASSIGN (double, short); |
|
37 INSTANTIATE_ARRAY_ASSIGN (double, char); |
3836
|
38 |
1989
|
39 #include "Array2.h" |
|
40 |
|
41 template class Array2<double>; |
|
42 |
3665
|
43 #include "ArrayN.h" |
|
44 #include "ArrayN.cc" |
|
45 |
|
46 template class ArrayN<double>; |
4505
|
47 |
3665
|
48 template std::ostream& operator << (std::ostream&, const ArrayN<double>&); |
|
49 |
1989
|
50 #include "DiagArray2.h" |
|
51 #include "DiagArray2.cc" |
|
52 |
|
53 template class DiagArray2<double>; |
|
54 |
757
|
55 /* |
|
56 ;;; Local Variables: *** |
|
57 ;;; mode: C++ *** |
|
58 ;;; End: *** |
|
59 */ |