Mercurial > hg > octave-nkf
annotate liboctave/Array-s.cc @ 8721:e9cb742df9eb
imported patch sort3.diff
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 11 Feb 2009 15:25:53 +0100 |
parents | 314be237cd5b |
children | eb63fbe60fab |
rev | line source |
---|---|
1573 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1995, 1996, 1997, 1998, 2001, 2003, 2005, 2007 |
4 John W. Eaton | |
1573 | 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. | |
1573 | 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/>. | |
1573 | 21 |
22 */ | |
23 | |
2006 | 24 #ifdef HAVE_CONFIG_H |
25 #include <config.h> | |
26 #endif | |
27 | |
1573 | 28 // Instantiate Arrays of short int values. |
29 | |
30 #include "Array.h" | |
31 #include "Array.cc" | |
8700 | 32 |
33 #define INLINE_ASCENDING_SORT | |
34 #define INLINE_DESCENDING_SORT | |
7433 | 35 #include "oct-sort.cc" |
36 | |
37 INSTANTIATE_ARRAY_SORT (short); | |
1573 | 38 |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8700
diff
changeset
|
39 INSTANTIATE_ARRAY (short, OCTAVE_API); |
3836 | 40 |
1989 | 41 #include "Array2.h" |
42 | |
43 template class Array2<short>; | |
44 | |
45 #include "DiagArray2.h" | |
46 #include "DiagArray2.cc" | |
47 | |
48 template class DiagArray2<short>; | |
49 | |
1573 | 50 /* |
51 ;;; Local Variables: *** | |
52 ;;; mode: C++ *** | |
53 ;;; End: *** | |
54 */ |