blob: 7660bebf041b8520e0f1731255898d6e06869cdd [file] [log] [blame]
Ted Kremenek95f33552010-08-26 01:42:22 +00001//===- 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
Ted Kremeneka60ed472010-11-16 08:15:36 +000026CXType MakeCXType(QualType T, CXTranslationUnit TU);
Ted Kremenek95f33552010-08-26 01:42:22 +000027
28}} // end namespace clang::cxtype
29#endif