diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2002-12-22 01:28:34 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2002-12-22 01:28:34 +0000 |
commit | 99a29c1926eee84f100ad9ea59a8c33f7878c342 (patch) | |
tree | 8b9235a630b5839350529d9e255d4f87c2389b5b /externals/grill/vasp/source/classes.h | |
parent | 927c48a90eb2a5ebf9e221041cd963c7377c8349 (diff) |
"no message"
svn path=/trunk/; revision=306
Diffstat (limited to 'externals/grill/vasp/source/classes.h')
-rw-r--r-- | externals/grill/vasp/source/classes.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/externals/grill/vasp/source/classes.h b/externals/grill/vasp/source/classes.h index 64719cd3..c032abd7 100644 --- a/externals/grill/vasp/source/classes.h +++ b/externals/grill/vasp/source/classes.h @@ -106,7 +106,7 @@ protected: BL detach; // detached operation? I prior; // thread priority - thrid_t thrid; +// thrid_t thrid; #else FLEXT_CALLBACK(m_bang) @@ -256,8 +256,8 @@ protected: \ virtual Vasp *tx_work() \ { \ OpParam p(thisName(),0); \ - CVasp cdst(dst); \ - return VaspOp::m_##op(p,CVasp(ref),&cdst); \ + CVasp cdst(dst),cref(ref); \ + return VaspOp::m_##op(p,cref,&cdst); \ } \ virtual V m_help() { post("%s - " help,thisName()); } \ }; \ @@ -275,8 +275,8 @@ protected: \ virtual Vasp *tx_work(const Argument &arg) \ { \ OpParam p(thisName(),1); \ - CVasp cdst(dst); \ - return VaspOp::m_##op(p,CVasp(ref),arg,&cdst); \ + CVasp cdst(dst),cref(ref); \ + return VaspOp::m_##op(p,cref,arg,&cdst); \ } \ virtual V m_help() { post("%s - " help,thisName()); } \ }; \ @@ -294,8 +294,8 @@ protected: \ virtual Vasp *tx_work(const Argument &arg) \ { \ OpParam p(thisName(),args); \ - CVasp cdst(dst); \ - return VaspOp::m_##op(p,CVasp(ref),arg,&cdst); \ + CVasp cdst(dst),cref(ref); \ + return VaspOp::m_##op(p,cref,arg,&cdst); \ } \ virtual V m_help() { post("%s - " help,thisName()); } \ }; \ |