clang API Documentation

Util.h
Go to the documentation of this file.
00001 //===--- Util.h - Common Driver Utilities -----------------------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 
00010 #ifndef CLANG_DRIVER_UTIL_H_
00011 #define CLANG_DRIVER_UTIL_H_
00012 
00013 #include "clang/Basic/LLVM.h"
00014 
00015 namespace clang {
00016 namespace driver {
00017   class Action;
00018 
00019   /// ArgStringList - Type used for constructing argv lists for subprocesses.
00020   typedef SmallVector<const char*, 16> ArgStringList;
00021 
00022   /// ActionList - Type used for lists of actions.
00023   typedef SmallVector<Action*, 3> ActionList;
00024 
00025 } // end namespace driver
00026 } // end namespace clang
00027 
00028 #endif