siplasplas
A library for C++ reflection and introspection
|
A C++ interface to the libclang C API. More...
Typedefs | |
using | cpp::reflection::parser::api::core::clang::CXDiagnostic = core::clang::UniqueHandle< ::CXDiagnostic, ::clang_disposeDiagnostic > |
Unique handle to a libclang CXDiagnostic pointer. | |
using | cpp::reflection::parser::api::core::clang::CXIndex = core::clang::UniqueHandle< ::CXIndex, ::clang_disposeIndex > |
Unique handle to a libclang CXIndex pointer. | |
using | cpp::reflection::parser::api::core::clang::CXString = core::clang::UniqueHandle< ::CXString, ::clang_disposeString > |
Unique handle to a libclang CXString pointer. | |
using | cpp::reflection::parser::api::core::clang::CXTranslationUnit = core::clang::UniqueHandle< ::CXTranslationUnit, ::clang_disposeTranslationUnit > |
Unique handle to a libclang CXTranslationUnit pointer. | |
Functions | |
template<typename RawHandle > | |
constexpr RawHandle | cpp::reflection::parser::api::core::clang::nullHandle () |
Returns the null value for a given handle type RawHandle. More... | |
A C++ interface to the libclang C API.
This module defines a C++ object oriented API to access to the libclang API. The API features automatic management of libclang resources by wrapping libclang handles in RAII classes, and the API is designed to operate with C++ datatypes (Strings, vectors, etc).
The API tries to have as low overhead as possible, by just forwarding calls to libclang. All properties of libclang entities, such as the spelling of a cursor or translation unit, are represented as member functions of the entity class. This classes do not chache any data but only act as an object oriented interface to the raw libclang calls.
constexpr RawHandle cpp::reflection::parser::api::core::clang::nullHandle | ( | ) |
Returns the null value for a given handle type RawHandle.
RawHandle | Handle type |