ClangHost.h revision 336823
1//===-- ClangHost.h ---------------------------------------------*- 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#ifndef LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
11#define LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
12
13namespace lldb_private {
14
15class FileSpec;
16
17#if defined(__APPLE__)
18bool ComputeClangDirectory(FileSpec &lldb_shlib_spec, FileSpec &file_spec,
19                           bool verify);
20#endif
21
22FileSpec GetClangResourceDir();
23
24} // namespace lldb_private
25
26#endif
27