//===- InstallAPI/DirectoryScanner.h ----------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// /// /// The DirectoryScanner for collecting library files on the file system. /// //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_INSTALLAPI_DIRECTORYSCANNER_H #define LLVM_CLANG_INSTALLAPI_DIRECTORYSCANNER_H #include "clang/Basic/FileManager.h" #include "clang/InstallAPI/Library.h" namespace clang::installapi { enum ScanMode { … }; class DirectoryScanner { … }; } // namespace clang::installapi #endif // LLVM_CLANG_INSTALLAPI_DIRECTORYSCANNER_H