1/*
2   lldb.swig
3
4   This is the input file for SWIG, to create the appropriate C++ wrappers and
5   functions for various scripting languages, to enable them to call the
6   liblldb Script Bridge functions.
7*/
8
9%module lldb
10
11%include <std_string.i>
12%include "lua-typemaps.swig"
13%include "macros.swig"
14%include "headers.swig"
15
16%{
17using namespace lldb_private;
18using namespace lldb;
19%}
20
21%include "interfaces.swig"
22