Mercurial > hg > octave-nkf
annotate src/TEMPLATE-INST/Array-tc.cc @ 8732:a669df7beb73
[mq]: x
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 12 Feb 2009 14:37:43 -0500 |
parents | 474f64ab905f |
children | eb63fbe60fab |
rev | line source |
---|---|
2928 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, |
4 2007 John W. Eaton | |
2928 | 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. | |
2928 | 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/>. | |
2928 | 21 |
22 */ | |
23 | |
24 // Instantiate Arrays of octave_values. | |
25 | |
26 #ifdef HAVE_CONFIG_H | |
27 #include <config.h> | |
28 #endif | |
29 | |
30 #include "Array.h" | |
31 #include "Array.cc" | |
32 | |
3354 | 33 #include "Array2.h" |
34 | |
4513 | 35 #include "ArrayN.h" |
36 #include "ArrayN.cc" | |
37 | |
4055 | 38 #include "oct-obj.h" |
2928 | 39 |
7433 | 40 #include "oct-sort.cc" |
41 | |
8732 | 42 NO_INSTANTIATE_ARRAY_SORT (octave_value); |
7433 | 43 |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8700
diff
changeset
|
44 INSTANTIATE_ARRAY (octave_value, OCTINTERP_API); |
4598 | 45 |
6109 | 46 template class OCTINTERP_API Array2<octave_value>; |
2928 | 47 |
6109 | 48 template class OCTINTERP_API ArrayN<octave_value>; |
4513 | 49 |
2928 | 50 /* |
51 ;;; Local Variables: *** | |
52 ;;; mode: C++ *** | |
53 ;;; End: *** | |
54 */ |