Skip to content
Snippets Groups Projects
Commit 337a15b6 authored by Paweł Kędzia's avatar Paweł Kędzia
Browse files

(swig) Wprapper for Wccl::ActionExecContext

parent ca9420d0
Branches
No related merge requests found
#ifndef SWIG_LIBWCCL_ACTIONEXECCONTEXT_I
#define SWIG_LIBWCCL_ACTIONEXECCONTEXT_I
%module libcclactionexeccontext
%{
#include <libwccl/ops/tagaction.h>
%}
%include "libcclvariables.i"
%include "libcclsentencecontext.i"
namespace Wccl {
class ActionExecContext {
public:
ActionExecContext(
SentenceContext& sentence_context,
const boost::shared_ptr<Variables>& vars);
/* --------------------------------------------------------------------- */
SentenceContext& sentence_context() const;
/* --------------------------------------------------------------------- */
const boost::shared_ptr<Variables>& variables() const;
};
}
using namespace boost;
using namespace Wccl;
using namespace std;
#endif /* SWIG_LIBWCCL_ACTIONEXECCONTEXT_I */
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment