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