Mercurial > hg > octave-nkf
annotate liboctave/Array-ch.cc @ 12011:67ad3b58b99a release-3-2-x
improve error handling
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 24 Jun 2009 07:31:32 +0200 |
parents | eb63fbe60fab |
children | b4fdfee405b5 |
rev | line source |
---|---|
1573 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1995, 1996, 1997, 1998, 2001, 2003, 2004, 2005, 2006, |
8920 | 4 2007, 2008, 2009 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 char values. |
29 | |
30 #include "Array.h" | |
31 #include "Array.cc" | |
7433 | 32 #include "oct-sort.cc" |
33 | |
34 INSTANTIATE_ARRAY_SORT (char); | |
1573 | 35 |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
7433
diff
changeset
|
36 INSTANTIATE_ARRAY (char, OCTAVE_API); |
3836 | 37 |
1989 | 38 #include "Array2.h" |
39 | |
6108 | 40 template class OCTAVE_API Array2<char>; |
1989 | 41 |
4513 | 42 #include "ArrayN.h" |
43 #include "ArrayN.cc" | |
44 | |
6108 | 45 template class OCTAVE_API ArrayN<char>; |
4513 | 46 |
6108 | 47 template OCTAVE_API std::ostream& operator << (std::ostream&, const ArrayN<char>&); |
4513 | 48 |
1989 | 49 #include "DiagArray2.h" |
50 #include "DiagArray2.cc" | |
51 | |
6108 | 52 template class OCTAVE_API DiagArray2<char>; |
1989 | 53 |
1573 | 54 /* |
55 ;;; Local Variables: *** | |
56 ;;; mode: C++ *** | |
57 ;;; End: *** | |
58 */ |