4902
|
1 /* |
|
2 |
|
3 Copyright (C) 2004 John W. Eaton |
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
5307
|
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
20 02110-1301, USA. |
4902
|
21 |
|
22 */ |
|
23 |
|
24 #if !defined (octave_uint64NDArray_h) |
|
25 #define octave_uint64NDArray_h 1 |
|
26 |
|
27 #include "intNDArray.h" |
|
28 #include "mx-op-defs.h" |
|
29 #include "oct-inttypes.h" |
|
30 |
|
31 typedef intNDArray<octave_uint64> uint64NDArray; |
|
32 |
|
33 NDS_CMP_OP_DECLS (uint64NDArray, octave_uint64) |
|
34 NDS_BOOL_OP_DECLS (uint64NDArray, octave_uint64) |
|
35 |
|
36 SND_CMP_OP_DECLS (octave_uint64, uint64NDArray) |
|
37 SND_BOOL_OP_DECLS (octave_uint64, uint64NDArray) |
|
38 |
|
39 NDND_CMP_OP_DECLS (uint64NDArray, uint64NDArray) |
|
40 NDND_BOOL_OP_DECLS (uint64NDArray, uint64NDArray) |
|
41 |
|
42 MARRAY_FORWARD_DEFS (MArrayN, uint64NDArray, octave_uint64) |
|
43 |
|
44 #endif |
|
45 |
|
46 /* |
|
47 ;;; Local Variables: *** |
|
48 ;;; mode: C++ *** |
|
49 ;;; End: *** |
|
50 */ |