//===-- BreakpointLocationList.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_BREAKPOINT_BREAKPOINTLOCATIONLIST_H #define LLDB_BREAKPOINT_BREAKPOINTLOCATIONLIST_H #include <map> #include <mutex> #include <vector> #include "lldb/Core/Address.h" #include "lldb/Utility/Iterable.h" #include "lldb/lldb-private.h" namespace lldb_private { /// \class BreakpointLocationList BreakpointLocationList.h /// "lldb/Breakpoint/BreakpointLocationList.h" This class is used by /// Breakpoint to manage a list of breakpoint locations, each breakpoint /// location in the list has a unique ID, and is unique by Address as well. class BreakpointLocationList { … }; } // namespace lldb_private #endif // LLDB_BREAKPOINT_BREAKPOINTLOCATIONLIST_H