Home | History | Annotate | Download | only in Basic
      1 //===--- FileSystemOptions.h - File System Options --------------*- C++ -*-===//
      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 the FileSystemOptions interface.
     11 //
     12 //===----------------------------------------------------------------------===//
     13 
     14 #ifndef LLVM_CLANG_BASIC_FILESYSTEMOPTIONS_H
     15 #define LLVM_CLANG_BASIC_FILESYSTEMOPTIONS_H
     16 
     17 #include <string>
     18 
     19 namespace clang {
     20 
     21 /// \brief Keeps track of options that affect how file operations are performed.
     22 class FileSystemOptions {
     23 public:
     24   /// \brief If set, paths are resolved as if the working directory was
     25   /// set to the value of WorkingDir.
     26   std::string WorkingDir;
     27 };
     28 
     29 } // end namespace clang
     30 
     31 #endif
     32