Mercurial > hg > octave-lyh
comparison src/ov-uint64.h @ 4904:71229573b6bf
[project @ 2004-06-14 19:31:52 by jwe]
author | jwe |
---|---|
date | Mon, 14 Jun 2004 19:33:53 +0000 |
parents | |
children | e35b034d3523 |
comparison
equal
deleted
inserted
replaced
4903:bfe64e459ce3 | 4904:71229573b6bf |
---|---|
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_uint64_h) | |
24 #define octave_uint64_h 1 | |
25 | |
26 #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION) | |
27 #pragma interface | |
28 #endif | |
29 | |
30 #define OCTAVE_VALUE_INT_MATRIX_T octave_uint64_matrix | |
31 #define OCTAVE_INT_NDARRAY_T uint64NDArray | |
32 #define OCTAVE_VALUE_INT_NDARRAY_EXTRACTOR_FUNCTION uint64_array_value | |
33 | |
34 #define OCTAVE_VALUE_INT_SCALAR_T octave_uint64_scalar | |
35 #define OCTAVE_INT_T octave_uint64 | |
36 #define OCTAVE_VALUE_INT_SCALAR_EXTRACTOR_FUNCTION uint64_scalar_value | |
37 | |
38 #include "ov-intx.h" | |
39 | |
40 #undef OCTAVE_VALUE_INT_MATRIX_T | |
41 #undef OCTAVE_INT_NDARRAY_T | |
42 #undef OCTAVE_VALUE_INT_NDARRAY_EXTRACTOR_FUNCTION | |
43 | |
44 #undef OCTAVE_VALUE_INT_SCALAR_T | |
45 #undef OCTAVE_INT_T | |
46 #undef OCTAVE_VALUE_INT_SCALAR_EXTRACTOR_FUNCTION | |
47 | |
48 #endif | |
49 | |
50 /* | |
51 ;;; Local Variables: *** | |
52 ;;; mode: C++ *** | |
53 ;;; End: *** | |
54 */ | |
55 |