comparison liboctave/int32NDArray.h @ 4902:bd043a433918

[project @ 2004-06-14 18:46:20 by jwe]
author jwe
date Mon, 14 Jun 2004 18:49:09 +0000
parents
children c638c144d4da
comparison
equal deleted inserted replaced
4901:35bfb4e0b96b 4902:bd043a433918
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
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21 */
22
23 #if !defined (octave_int32NDArray_h)
24 #define octave_int32NDArray_h 1
25
26 #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION)
27 #pragma interface
28 #endif
29
30 #include "intNDArray.h"
31 #include "mx-op-defs.h"
32 #include "oct-inttypes.h"
33
34 typedef intNDArray<octave_int32> int32NDArray;
35
36 NDS_CMP_OP_DECLS (int32NDArray, octave_int32)
37 NDS_BOOL_OP_DECLS (int32NDArray, octave_int32)
38
39 SND_CMP_OP_DECLS (octave_int32, int32NDArray)
40 SND_BOOL_OP_DECLS (octave_int32, int32NDArray)
41
42 NDND_CMP_OP_DECLS (int32NDArray, int32NDArray)
43 NDND_BOOL_OP_DECLS (int32NDArray, int32NDArray)
44
45 MARRAY_FORWARD_DEFS (MArrayN, int32NDArray, octave_int32)
46
47 #endif
48
49 /*
50 ;;; Local Variables: ***
51 ;;; mode: C++ ***
52 ;;; End: ***
53 */