blob: c702e4964081fa22d8927e6af61183de8776f4f1 [file] [log] [blame]
/*
lldb.swig
This is the input file for SWIG, to create the appropriate C++ wrappers and
functions for various scripting languages, to enable them to call the
liblldb Script Bridge functions.
*/
%module lldb
%include <std_string.i>
%include "lua-typemaps.swig"
%include "macros.swig"
%include "headers.swig"
%{
#include "llvm/Support/Error.h"
#include "llvm/Support/FormatVariadic.h"
#include "../bindings/lua/lua-swigsafecast.swig"
using namespace lldb_private;
using namespace lldb;
%}
%include "interfaces.swig"
%include "lua-wrapper.swig"