Home | History | Annotate | Download | only in libclang
      1 //===- CXTypes.h - Routines for manipulating CXTypes ----------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 //
     10 // This file defines routines for manipulating CXCursors.
     11 //
     12 //===----------------------------------------------------------------------===//
     13 
     14 #ifndef LLVM_CLANG_TOOLS_LIBCLANG_CXTYPE_H
     15 #define LLVM_CLANG_TOOLS_LIBCLANG_CXTYPE_H
     16 
     17 #include "clang-c/Index.h"
     18 #include "clang/AST/Type.h"
     19 
     20 namespace clang {
     21 
     22 class ASTUnit;
     23 
     24 namespace cxtype {
     25 
     26 CXType MakeCXType(QualType T, CXTranslationUnit TU);
     27 
     28 }} // end namespace clang::cxtype
     29 #endif
     30