
When adding SBLock, I realized you always have to add a new header in two places: LLDB.h and headers.swig. I can't think of a reason the latter can't use the umbrella header and avoid the duplication.
12 lines
190 B
Plaintext
12 lines
190 B
Plaintext
/* C++ headers to be included. */
|
|
%{
|
|
#include <algorithm>
|
|
#include <string>
|
|
%}
|
|
|
|
/* The liblldb header files to be included. */
|
|
%{
|
|
#include "lldb/lldb-public.h"
|
|
#include "lldb/API/LLDB.h"
|
|
%}
|