diff options
Diffstat (limited to 'externals/grill/vasp/source/ops_assign.h')
-rw-r--r-- | externals/grill/vasp/source/ops_assign.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/externals/grill/vasp/source/ops_assign.h b/externals/grill/vasp/source/ops_assign.h deleted file mode 100644 index 78a3392e..00000000 --- a/externals/grill/vasp/source/ops_assign.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - -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 "opfuns.h" - -// Assignment functions - -DEFOP(S,d_copy,copy,run) -DEFOP(S,d_ccopy,copy,cun) - -DEFOP(S,d_set,set,rbin) -DEFOP(S,d_cset,set,cbin) - - -namespace VaspOp { - inline Vasp *m_set(OpParam &p,CVasp &src,const Argument &arg,CVasp *dst = NULL) { return m_rbin(p,src,arg,dst,VecOp::d_set); } // copy to (one vec or real) - inline Vasp *m_cset(OpParam &p,CVasp &src,const Argument &arg,CVasp *dst = NULL) { return m_cbin(p,src,arg,dst,VecOp::d_cset); } // complex copy (pairs of vecs or complex) - - Vasp *m_copy(OpParam &p,CVasp &src,CVasp &dst); - Vasp *m_ccopy(OpParam &p,CVasp &src,CVasp &dst); -} - -#endif |