ClangHost.h revision 341825
191714Sdes//===-- ClangHost.h ---------------------------------------------*- C++ -*-===//
291714Sdes//
3265420Simp//                     The LLVM Compiler Infrastructure
4156813Sru//
591714Sdes// This file is distributed under the University of Illinois Open Source
6113261Sdes// License. See LICENSE.TXT for details.
791714Sdes//
897182Sdes//===----------------------------------------------------------------------===//
997182Sdes
1096191Sdes#ifndef LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
11110453Sdes#define LLDB_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
12115462Sdes
13156813Srunamespace lldb_private {
1491714Sdes
1597426Snectarclass FileSpec;
1691714Sdes
1791714Sdes#if defined(__APPLE__)
1891714Sdesbool ComputeClangDirectory(FileSpec &lldb_shlib_spec, FileSpec &file_spec,
1991714Sdes                           bool verify);
2091714Sdes#endif
2191714Sdes
2294693SdesFileSpec GetClangResourceDir();
2391714Sdes
24278182Sngie} // namespace lldb_private
2591714Sdes
26278182Sngie#endif
2794551Sdes