//===-- FileLineResolver.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_CORE_FILELINERESOLVER_H #define LLDB_CORE_FILELINERESOLVER_H #include "lldb/Core/SearchFilter.h" #include "lldb/Symbol/SymbolContext.h" #include "lldb/Utility/FileSpec.h" #include "lldb/lldb-defines.h" #include <cstdint> namespace lldb_private { class Address; class Stream; /// \class FileLineResolver FileLineResolver.h "lldb/Core/FileLineResolver.h" /// This class finds address for source file and line. Optionally, it will /// look for inlined instances of the file and line specification. class FileLineResolver : public Searcher { … }; } // namespace lldb_private #endif // LLDB_CORE_FILELINERESOLVER_H