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 |
7016
|
9 Free Software Foundation; either version 3 of the License, or (at your |
|
10 option) any later version. |
4902
|
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 |
7016
|
18 along with Octave; see the file COPYING. If not, see |
|
19 <http://www.gnu.org/licenses/>. |
4902
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_int64NDArray_h) |
|
24 #define octave_int64NDArray_h 1 |
|
25 |
|
26 #include "intNDArray.h" |
|
27 #include "mx-op-defs.h" |
|
28 #include "oct-inttypes.h" |
|
29 |
|
30 typedef intNDArray<octave_int64> int64NDArray; |
|
31 |
6708
|
32 NDS_CMP_OP_DECLS (int64NDArray, octave_int64, OCTAVE_API) |
|
33 NDS_BOOL_OP_DECLS (int64NDArray, octave_int64, OCTAVE_API) |
4902
|
34 |
6708
|
35 SND_CMP_OP_DECLS (octave_int64, int64NDArray, OCTAVE_API) |
|
36 SND_BOOL_OP_DECLS (octave_int64, int64NDArray, OCTAVE_API) |
4902
|
37 |
6708
|
38 NDND_CMP_OP_DECLS (int64NDArray, int64NDArray, OCTAVE_API) |
|
39 NDND_BOOL_OP_DECLS (int64NDArray, int64NDArray, OCTAVE_API) |
4902
|
40 |
|
41 MARRAY_FORWARD_DEFS (MArrayN, int64NDArray, octave_int64) |
|
42 |
|
43 #endif |
|
44 |
|
45 /* |
|
46 ;;; Local Variables: *** |
|
47 ;;; mode: C++ *** |
|
48 ;;; End: *** |
|
49 */ |