]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / llvm / tools / clang / include / clang / Basic / FileSystemOptions.h
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 /// \file
11 /// \brief Defines the clang::FileSystemOptions interface.
12 ///
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CLANG_BASIC_FILESYSTEMOPTIONS_H
16 #define LLVM_CLANG_BASIC_FILESYSTEMOPTIONS_H
17
18 #include <string>
19
20 namespace clang {
21
22 /// \brief Keeps track of options that affect how file operations are performed.
23 class FileSystemOptions {
24 public:
25   /// \brief If set, paths are resolved as if the working directory was
26   /// set to the value of WorkingDir.
27   std::string WorkingDir;
28 };
29
30 } // end namespace clang
31
32 #endif