00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #if !defined (octave_int8NDArray_h)
00024 #define octave_int8NDArray_h 1
00025
00026 #include "intNDArray.h"
00027 #include "mx-op-decl.h"
00028 #include "oct-inttypes.h"
00029
00030 typedef intNDArray<octave_int8> int8NDArray;
00031
00032 NDS_CMP_OP_DECLS (int8NDArray, octave_int8, OCTAVE_API)
00033 NDS_BOOL_OP_DECLS (int8NDArray, octave_int8, OCTAVE_API)
00034
00035 SND_CMP_OP_DECLS (octave_int8, int8NDArray, OCTAVE_API)
00036 SND_BOOL_OP_DECLS (octave_int8, int8NDArray, OCTAVE_API)
00037
00038 NDND_CMP_OP_DECLS (int8NDArray, int8NDArray, OCTAVE_API)
00039 NDND_BOOL_OP_DECLS (int8NDArray, int8NDArray, OCTAVE_API)
00040
00041 MARRAY_FORWARD_DEFS (MArrayN, int8NDArray, octave_int8)
00042
00043 MINMAX_DECLS (int8)
00044
00045 #endif
00046
00047
00048
00049
00050
00051