1212
|
1 /* |
|
2 |
8920
|
3 Copyright (C) 1995, 1996, 1997, 2000, 2003, 2005, 2006, 2007, 2008 |
7017
|
4 John W. Eaton |
1212
|
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. |
1212
|
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/>. |
1212
|
21 |
|
22 */ |
|
23 |
2006
|
24 #ifdef HAVE_CONFIG_H |
|
25 #include <config.h> |
|
26 #endif |
|
27 |
1212
|
28 // Instantiate MArrays of Complex values. |
|
29 |
1989
|
30 #include "oct-cmplx.h" |
|
31 |
1212
|
32 #include "MArray.h" |
|
33 #include "MArray.cc" |
6508
|
34 |
6108
|
35 template class OCTAVE_API MArray<Complex>; |
1212
|
36 |
6708
|
37 INSTANTIATE_MARRAY_FRIENDS (Complex, OCTAVE_API) |
1989
|
38 |
|
39 #include "MDiagArray2.h" |
|
40 #include "MDiagArray2.cc" |
|
41 |
6108
|
42 template class OCTAVE_API MDiagArray2<Complex>; |
1989
|
43 |
6708
|
44 INSTANTIATE_MDIAGARRAY2_FRIENDS (Complex, OCTAVE_API) |