blob: f55f8710cee87778c6bcd4a6252f6743e4259ef2 [file] [log] [blame]
//===--- ASTStreamer.h - Stream ASTs for top-level decls --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by Chris Lattner and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the ASTStreamer interface.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_AST_ASTSTREAMER_H
#define LLVM_CLANG_AST_ASTSTREAMER_H
namespace clang {
class Preprocessor;
class ASTContext;
class Decl;
/// ASTStreamerTy - This is an opaque type used to reference ASTStreamer
/// objects.
typedef void ASTStreamerTy;
/// ASTStreamer_Init - Create an ASTStreamer with the specified ASTContext
/// and FileID.
ASTStreamerTy *ASTStreamer_Init(Preprocessor &pp, ASTContext &ctxt,
unsigned MainFileID);
/// ASTStreamer_ReadTopLevelDecl - Parse and return one top-level declaration.
/// This returns null at end of file.
Decl *ASTStreamer_ReadTopLevelDecl(ASTStreamerTy *Streamer);
/// ASTStreamer_PrintStats - Emit statistic information to stderr.
///
void ASTStreamer_PrintStats(ASTStreamerTy *Streamer);
/// ASTStreamer_Terminate - Gracefully shut down the streamer.
///
void ASTStreamer_Terminate(ASTStreamerTy *Streamer);
} // end namespace clang
#endif