881
|
1 /* |
|
2 |
7017
|
3 Copyright (C) 1994, 1995, 1996, 1997, 1998, 2001, 2003, 2004, 2005, |
|
4 2006, 2007 John W. Eaton |
881
|
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 |
7016
|
10 Free Software Foundation; either version 3 of the License, or (at your |
|
11 option) any later version. |
881
|
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 |
7016
|
19 along with Octave; see the file COPYING. If not, see |
|
20 <http://www.gnu.org/licenses/>. |
881
|
21 |
|
22 */ |
|
23 |
2006
|
24 #ifdef HAVE_CONFIG_H |
|
25 #include <config.h> |
|
26 #endif |
|
27 |
4902
|
28 #include "oct-inttypes.h" |
|
29 |
881
|
30 // Instantiate Arrays of integer values. |
|
31 |
|
32 #include "Array.h" |
|
33 #include "Array.cc" |
|
34 |
6708
|
35 INSTANTIATE_ARRAY_AND_ASSIGN (int, OCTAVE_API); |
|
36 INSTANTIATE_ARRAY_AND_ASSIGN (long, OCTAVE_API); |
1574
|
37 |
6708
|
38 INSTANTIATE_ARRAY_ASSIGN (int, short, OCTAVE_API); |
|
39 INSTANTIATE_ARRAY_ASSIGN (int, char, OCTAVE_API); |
3836
|
40 |
6708
|
41 INSTANTIATE_ARRAY_AND_ASSIGN (octave_int8, OCTAVE_API); |
|
42 INSTANTIATE_ARRAY_AND_ASSIGN (octave_int16, OCTAVE_API); |
|
43 INSTANTIATE_ARRAY_AND_ASSIGN (octave_int32, OCTAVE_API); |
|
44 INSTANTIATE_ARRAY_AND_ASSIGN (octave_int64, OCTAVE_API); |
4902
|
45 |
6708
|
46 INSTANTIATE_ARRAY_AND_ASSIGN (octave_uint8, OCTAVE_API); |
|
47 INSTANTIATE_ARRAY_AND_ASSIGN (octave_uint16, OCTAVE_API); |
|
48 INSTANTIATE_ARRAY_AND_ASSIGN (octave_uint32, OCTAVE_API); |
|
49 INSTANTIATE_ARRAY_AND_ASSIGN (octave_uint64, OCTAVE_API); |
4902
|
50 |
1989
|
51 #include "Array2.h" |
|
52 |
6108
|
53 template class OCTAVE_API Array2<int>; |
1989
|
54 |
|
55 #include "DiagArray2.h" |
|
56 #include "DiagArray2.cc" |
|
57 |
6108
|
58 template class OCTAVE_API DiagArray2<int>; |
1989
|
59 |
881
|
60 /* |
|
61 ;;; Local Variables: *** |
|
62 ;;; mode: C++ *** |
|
63 ;;; End: *** |
|
64 */ |