diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-08-26 01:42:22 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-08-26 01:42:22 +0000 |
commit | 95f33555a6d51b6537a9ed3968c3d1c2e4991b51 (patch) | |
tree | 3c81eccf2bf7be2c9a886f9915235871d8727d14 /tools/libclang/CXType.h | |
parent | 2dc70ad391cb75ea90a2fb5d14a7f1d271534da3 (diff) |
Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/CXType.h')
-rw-r--r-- | tools/libclang/CXType.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/libclang/CXType.h b/tools/libclang/CXType.h new file mode 100644 index 0000000000..94151ed6b9 --- /dev/null +++ b/tools/libclang/CXType.h @@ -0,0 +1,29 @@ +//===- CXTypes.h - Routines for manipulating CXTypes ----------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines routines for manipulating CXCursors. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CLANG_CXTYPES_H +#define LLVM_CLANG_CXTYPES_H + +#include "clang-c/Index.h" +#include "clang/AST/Type.h" + +namespace clang { + +class ASTUnit; + +namespace cxtype { + +CXType MakeCXType(QualType T, ASTUnit *TU); + +}} // end namespace clang::cxtype +#endif |