llvm-project/lldb/bindings/headers.swig
Jonas Devlieghere 4322d03e4a
[lldb] Avoid having to list all the headers in headers.swig (#131934)
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.
2025-03-19 07:45:25 -07:00

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"
%}