handle labeldecls.
[clang.git] / tools / libclang / CXTranslationUnit.h
blob6df85b7d4dc9eab50aa2a0ece0bfa69a8c315c74
1 //===- CXTranslationUnit.h - Routines for manipulating CXTranslationUnits -===//
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 CXTranslationUnits.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_CLANG_CXTRANSLATIONUNIT_H
15 #define LLVM_CLANG_CXTRANSLATIONUNIT_H
17 extern "C" {
18 struct CXTranslationUnitImpl {
19 void *TUData;
20 void *StringPool;
24 #endif