aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_bitright.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-09-19 12:51:27 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-09-19 12:51:27 +0000
commit365bfca88395f6608121d37ed1b5f7c22403f98f (patch)
treedf48b32aabf16991cf9dc9fff3e910c5c8c0e350 /src/mtx_bitright.c
parent20836806ed83c0d6683364d04da9d048fa514a9c (diff)
new objects
svn path=/trunk/externals/iem/iemmatrix/; revision=3590
Diffstat (limited to 'src/mtx_bitright.c')
-rw-r--r--src/mtx_bitright.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mtx_bitright.c b/src/mtx_bitright.c
new file mode 100644
index 0000000..8c08e44
--- /dev/null
+++ b/src/mtx_bitright.c
@@ -0,0 +1,23 @@
+/*
+ * iemmatrix
+ *
+ * objects fand manipulating simple matrices
+ * mostly refering to matlab/octave matrix functions
+ *
+ * Copyright (c) IOhannes m zmölnig, forum::für::umläute
+ * IEM, Graz, Austria
+ *
+ * Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL
+ * WARRANTIES, see the file, "LICENSE.txt," in this distribution.
+ *
+ */
+
+/* name of the object and the classes */
+#define MTXBIN_GENERIC__NAME mtx_bitright
+/* operator; also used for abbreviation of object */
+#define MTXBIN_GENERIC__OPERATOR >>
+
+/* the operator operates on integers instead of floats */
+#define MTXBIN_GENERIC__INTEGEROP
+
+#include "mtx_binop_generic.h"