~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to liboctave/uint64NDArray.cc

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// N-D Array  manipulations.
 
2
/*
 
3
 
 
4
Copyright (C) 2004, 2005, 2006, 2007 John W. Eaton
 
5
 
 
6
This file is part of Octave.
 
7
 
 
8
Octave is free software; you can redistribute it and/or modify it
 
9
under the terms of the GNU General Public License as published by the
 
10
Free Software Foundation; either version 3 of the License, or (at your
 
11
option) any later version.
 
12
 
 
13
Octave is distributed in the hope that it will be useful, but WITHOUT
 
14
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
15
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
16
for more details.
 
17
 
 
18
You should have received a copy of the GNU General Public License
 
19
along with Octave; see the file COPYING.  If not, see
 
20
<http://www.gnu.org/licenses/>.
 
21
 
 
22
*/
 
23
 
 
24
#ifdef HAVE_CONFIG_H
 
25
#include <config.h>
 
26
#endif
 
27
 
 
28
#include "uint64NDArray.h"
 
29
 
 
30
#include "intNDArray.cc"
 
31
 
 
32
template class OCTAVE_API intNDArray<octave_uint64>;
 
33
 
 
34
template OCTAVE_API
 
35
std::ostream&
 
36
operator << (std::ostream& os, const intNDArray<octave_uint64>& a);
 
37
 
 
38
template OCTAVE_API
 
39
std::istream&
 
40
operator >> (std::istream& is, intNDArray<octave_uint64>& a);
 
41
 
 
42
NDS_CMP_OPS (uint64NDArray, , octave_uint64, )
 
43
NDS_BOOL_OPS (uint64NDArray, octave_uint64, octave_uint64 (0))
 
44
 
 
45
SND_CMP_OPS (octave_uint64, , uint64NDArray, )
 
46
SND_BOOL_OPS (octave_uint64, uint64NDArray, octave_uint64 (0))
 
47
 
 
48
NDND_CMP_OPS (uint64NDArray, , uint64NDArray, )
 
49
NDND_BOOL_OPS (uint64NDArray, uint64NDArray, octave_uint64 (0))
 
50
 
 
51
MINMAX_FCNS (uint64)
 
52
 
 
53
/*
 
54
;;; Local Variables: ***
 
55
;;; mode: C++ ***
 
56
;;; End: ***
 
57
*/