README.rdoc 753 B

123456789101112131415161718192021
  1. = Ruby bindings for libclang
  2. This module provides bindings for the C interface of Clang.
  3. http://clang.llvm.org/
  4. The libclang data are mapped to the following:
  5. [CXIndex] Clangc::Index
  6. [CXTranslationUnit] Clangc::TranslationUnit
  7. [CXDiagnostic] Clangc::Diagnostic
  8. [CXFile] Clangc::File
  9. [CXSourceRange] Clangc::SourceRange
  10. [CXSourceLocation] Clangc::SourceLocation
  11. [CXCursor] Clangc::Cursor
  12. [CXType] Clangc::Type
  13. [CXCursorSet] Clangc::CursorSet
  14. [CXModule] Clangc::Module
  15. [CXCompletionString] Clangc::CompletionString
  16. [CXCodeCompleteResults] Clangc::CodeCompleteResults
  17. [CXCompletionResult] Clangc::CompletionResult