siplasplas
A library for C++ reflection and introspection
Clang

A C++ interface to the libclang C API. More...

Classes

class  cpp::reflection::parser::api::core::clang::CompileOptions
 Represents a set of clang command line compile options. More...
 
class  cpp::reflection::parser::api::core::clang::Diagnostic
 A single diagnostic, containing the diagnostic's severity, text, etc. More...
 
class  cpp::reflection::parser::api::core::clang::Error
 Represents a libclang API error. More...
 
class  cpp::reflection::parser::api::core::clang::NullHandle< RawHandle >
 Returns the null value for a given handle type RawHandle. More...
 
class  cpp::reflection::parser::api::core::clang::NullHandle< RawHandle * >
 NullHandle specialization for pointer types. More...
 
class  cpp::reflection::parser::api::core::clang::UniqueHandle< RawHandle, Release >
 Provides a iunique-ownership RAII wrapper for raw resources. More...
 
class  cpp::reflection::parser::api::core::clang::SharedHandle< RawHandle, Release >
 Provides a shared-ownership RAII wrapper for raw resources. More...
 
class  cpp::reflection::parser::api::core::clang::Index
 Compilation index. More...
 
class  cpp::reflection::parser::api::core::clang::String
 Interface to a string managed by the libclang C interface. More...
 
class  cpp::reflection::parser::api::core::clang::TranslationUnit
 Gives access to a parsed translation unit data. More...
 
class  cpp::reflection::parser::api::core::clang::UnsavedFile
 Represents an unsaved file in memory. More...
 
class  cpp::reflection::parser::api::core::clang::FileWriter
 Provides an interface to write UnsavedFiles on memory. 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...
 

Detailed Description

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.

Function Documentation

§ nullHandle()

template<typename RawHandle >
constexpr RawHandle cpp::reflection::parser::api::core::clang::nullHandle ( )

Returns the null value for a given handle type RawHandle.

Template Parameters
RawHandleHandle type