diff liboctave/boolNDArray.h @ 4543:79df15d4470c

[project @ 2003-10-18 03:53:52 by jwe]
author jwe
date Sat, 18 Oct 2003 03:53:53 +0000
parents 01ee68d18069
children 773a21e4fce8
line wrap: on
line diff
--- a/liboctave/boolNDArray.h	Fri Oct 17 04:41:36 2003 +0000
+++ b/liboctave/boolNDArray.h	Sat Oct 18 03:53:53 2003 +0000
@@ -62,6 +62,10 @@
       return *this;
     }
 
+  // unary operations
+
+  boolNDArray operator ! (void) const;
+
   // XXX FIXME XXX -- this is not quite the right thing.
 
   boolMatrix all (int dim = -1) const;
@@ -90,6 +94,8 @@
   boolNDArray (bool *d, dim_vector& dims) : ArrayN<bool> (d, dims) { }
 };
 
+NDND_CMP_OP_DECLS (boolNDArray, boolNDArray)
+
 #endif
 
 /*