From 9815096db22c73cacdbb65512d1b61d633db7fa8 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Mon, 2 Dec 2002 19:21:08 +0000 Subject: "version 0.1.1" svn path=/trunk/; revision=267 --- externals/grill/vasp/source/ops_assign.h | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 externals/grill/vasp/source/ops_assign.h (limited to 'externals/grill/vasp/source/ops_assign.h') diff --git a/externals/grill/vasp/source/ops_assign.h b/externals/grill/vasp/source/ops_assign.h new file mode 100644 index 00000000..e80501f0 --- /dev/null +++ b/externals/grill/vasp/source/ops_assign.h @@ -0,0 +1,34 @@ +/* + +VASP modular - vector assembling signal processor / objects for Max/MSP and PD + +Copyright (c) 2002 Thomas Grill (xovo@gmx.net) +For information on usage and redistribution, and for a DISCLAIMER OF ALL +WARRANTIES, see the file, "license.txt," in this distribution. + +*/ + +#ifndef __VASP_OPS_ASSIGN_H +#define __VASP_OPS_ASSIGN_H + +#include "opbase.h" + +// Assignment functions + +namespace VecOp { + BL d_copy(OpParam &p); + BL d_set(OpParam &p); + + BL d_ccopy(OpParam &p); + BL d_cset(OpParam &p); +} + +namespace VaspOp { + inline Vasp *m_set(OpParam &p,Vasp &src,const Argument &arg,Vasp *dst = NULL) { return m_rbin(p,src,arg,dst,VecOp::d_set); } // copy to (one vec or real) + inline Vasp *m_cset(OpParam &p,Vasp &src,const Argument &arg,Vasp *dst = NULL) { return m_cbin(p,src,arg,dst,VecOp::d_cset); } // complex copy (pairs of vecs or complex) + + Vasp *m_copy(OpParam &p,Vasp &src,Vasp &dst); + Vasp *m_ccopy(OpParam &p,Vasp &src,Vasp &dst); +} + +#endif -- cgit v1.2.1