CXType.h revision a60ed47da13393796d8552b9fdca12abbb3eea42
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_CXTYPES_H
15#define LLVM_CLANG_CXTYPES_H
16
17#include "clang-c/Index.h"
18#include "clang/AST/Type.h"
19
20namespace clang {
21
22class ASTUnit;
23
24namespace cxtype {
25
26CXType MakeCXType(QualType T, CXTranslationUnit TU);
27
28}} // end namespace clang::cxtype
29#endif
30