4902
|
1 // N-D Array manipulations. |
|
2 /* |
|
3 |
7017
|
4 Copyright (C) 2004, 2005, 2006, 2007 John W. Eaton |
4902
|
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. |
4902
|
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/>. |
4902
|
21 |
|
22 */ |
|
23 |
|
24 #ifdef HAVE_CONFIG_H |
|
25 #include <config.h> |
|
26 #endif |
|
27 |
|
28 #include "uint8NDArray.h" |
|
29 |
|
30 #include "intNDArray.cc" |
|
31 |
6108
|
32 template class OCTAVE_API intNDArray<octave_uint8>; |
4902
|
33 |
6108
|
34 template OCTAVE_API |
4902
|
35 std::ostream& |
|
36 operator << (std::ostream& os, const intNDArray<octave_uint8>& a); |
|
37 |
6108
|
38 template OCTAVE_API |
4902
|
39 std::istream& |
|
40 operator >> (std::istream& is, intNDArray<octave_uint8>& a); |
|
41 |
|
42 NDS_CMP_OPS (uint8NDArray, , octave_uint8, ) |
|
43 NDS_BOOL_OPS (uint8NDArray, octave_uint8, octave_uint8 (0)) |
|
44 |
|
45 SND_CMP_OPS (octave_uint8, , uint8NDArray, ) |
|
46 SND_BOOL_OPS (octave_uint8, uint8NDArray, octave_uint8 (0)) |
|
47 |
|
48 NDND_CMP_OPS (uint8NDArray, , uint8NDArray, ) |
|
49 NDND_BOOL_OPS (uint8NDArray, uint8NDArray, octave_uint8 (0)) |
|
50 |
|
51 /* |
|
52 ;;; Local Variables: *** |
|
53 ;;; mode: C++ *** |
|
54 ;;; End: *** |
|
55 */ |