clang API Documentation
00001 //===--- FileSystemOptions.h - File System Options --------------*- 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 /// \file 00011 /// \brief Defines the clang::FileSystemOptions interface. 00012 /// 00013 //===----------------------------------------------------------------------===// 00014 00015 #ifndef LLVM_CLANG_BASIC_FILESYSTEMOPTIONS_H 00016 #define LLVM_CLANG_BASIC_FILESYSTEMOPTIONS_H 00017 00018 #include <string> 00019 00020 namespace clang { 00021 00022 /// \brief Keeps track of options that affect how file operations are performed. 00023 class FileSystemOptions { 00024 public: 00025 /// \brief If set, paths are resolved as if the working directory was 00026 /// set to the value of WorkingDir. 00027 std::string WorkingDir; 00028 }; 00029 00030 } // end namespace clang 00031 00032 #endif