Mercurial > hg > octave-nkf
annotate liboctave/Array-b.cc @ 9732:b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 16 Oct 2009 13:12:31 +0200 |
parents | eb63fbe60fab |
children | e4936c129cbd |
rev | line source |
---|---|
2493 | 1 /* |
2 | |
8920 | 3 Copyright (C) 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008, 2009 |
7017 | 4 John W. Eaton |
2493 | 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. | |
2493 | 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/>. | |
2493 | 21 |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include <config.h> | |
26 #endif | |
27 | |
28 // Instantiate Arrays of bool values. | |
29 | |
30 #include "Array.h" | |
31 #include "Array.cc" | |
7433 | 32 #include "oct-sort.cc" |
33 | |
34 INSTANTIATE_ARRAY_SORT (bool); | |
2493 | 35 |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
7433
diff
changeset
|
36 INSTANTIATE_ARRAY (bool, OCTAVE_API); |
3836 | 37 |
2826 | 38 #include "Array2.h" |
39 | |
6108 | 40 template class OCTAVE_API Array2<bool>; |
2826 | 41 |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
42 template OCTAVE_API std::ostream& operator << (std::ostream&, const Array<bool>&); |
4513 | 43 |
2826 | 44 #include "DiagArray2.h" |
45 #include "DiagArray2.cc" | |
46 | |
6108 | 47 template class OCTAVE_API DiagArray2<bool>; |
2826 | 48 |
2493 | 49 /* |
50 ;;; Local Variables: *** | |
51 ;;; mode: C++ *** | |
52 ;;; End: *** | |
53 */ |