//===-- BreakpointResolverAddress.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_BREAKPOINTRESOLVERADDRESS_H #define LLDB_BREAKPOINT_BREAKPOINTRESOLVERADDRESS_H #include "lldb/Breakpoint/BreakpointResolver.h" #include "lldb/Core/ModuleSpec.h" namespace lldb_private { /// \class BreakpointResolverAddress BreakpointResolverAddress.h /// "lldb/Breakpoint/BreakpointResolverAddress.h" This class sets breakpoints /// on a given Address. This breakpoint only takes once, and then it won't /// attempt to reset itself. class BreakpointResolverAddress : public BreakpointResolver { … }; } // namespace lldb_private #endif // LLDB_BREAKPOINT_BREAKPOINTRESOLVERADDRESS_H