From 165fc3638f9666e94c5cfc4fe719697b0ce72774 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 6 Oct 2009 17:02:44 +0000 Subject: Split backend specific compilation functions from generic ones. git-svn-id: http://svn.drobilla.net/resp/tuplr@191 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/tuplr.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/tuplr.hpp') diff --git a/src/tuplr.hpp b/src/tuplr.hpp index 1e64da1..ca97da9 100644 --- a/src/tuplr.hpp +++ b/src/tuplr.hpp @@ -627,9 +627,10 @@ struct Engine { const AType* retT, const ATuple& argsT, const vector argNames=vector()) = 0; - virtual void finishFunction(CEnv& cenv, CFunction f, const AType* retT, CValue ret) = 0; - virtual void eraseFunction(CEnv& cenv, CFunction f) = 0; - virtual void writeModule(CEnv& cenv, std::ostream& os) = 0; + virtual void finishFunction(CEnv& cenv, CFunction f, const AType* retT, CValue ret) = 0; + virtual void eraseFunction(CEnv& cenv, CFunction f) = 0; + virtual CValue compileCall(CEnv& cenv, CFunction f, const vector& args) = 0; + virtual void writeModule(CEnv& cenv, std::ostream& os) = 0; virtual const string call(CEnv& cenv, CFunction f, AType* retT) = 0; }; -- cgit v1.2.1