blob: b02ae5952857d1f798b0bc3227fbe8759afbb73b [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_BREAKPOINT_H_
#define SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_BREAKPOINT_H_
#include "src/developer/debug/zxdb/debug_adapter/context.h"
namespace zxdb {
dap::ResponseOrError<dap::SetBreakpointsResponse> OnRequestBreakpoint(
DebugAdapterContext *ctx, const dap::SetBreakpointsRequest &req);
}
#endif // SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_BREAKPOINT_H_