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