24 lines · c
1//===-- ClangHost.h ---------------------------------------------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H10#define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H11 12namespace lldb_private {13 14class FileSpec;15 16bool ComputeClangResourceDirectory(FileSpec &lldb_shlib_spec,17 FileSpec &file_spec, bool verify);18 19FileSpec GetClangResourceDir();20 21} // namespace lldb_private22 23#endif24