blob: a94004d5d940fea4848f5c7c8d4fce2211351311 [file] [log] [blame]
// Copyright 2021 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_STEP_OUT_H_
#define SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_STEP_OUT_H_
#include "src/developer/debug/zxdb/debug_adapter/context.h"
namespace zxdb {
void OnRequestStepOut(DebugAdapterContext* ctx, const dap::StepOutRequest& request,
std::function<void(dap::ResponseOrError<dap::StepOutResponse>)> callback);
} // namespace zxdb
#endif // SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_STEP_OUT_H_