//===-- DeclVendor.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 // //===----------------------------------------------------------------------===// #ifndef LLDB_SYMBOL_DECLVENDOR_H #define LLDB_SYMBOL_DECLVENDOR_H #include "lldb/lldb-defines.h" #include <vector> namespace lldb_private { // The Decl vendor class is intended as a generic interface to search for named // declarations that are not necessarily backed by a specific symbol file. class DeclVendor { … }; } // namespace lldb_private #endif