LLDB mainline
Stoppoint.cpp
Go to the documentation of this file.
1//===-- Stoppoint.cpp -----------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10#include "lldb/lldb-private.h"
11
12
13using namespace lldb;
14using namespace lldb_private;
15
16// Stoppoint constructor
17Stoppoint::Stoppoint() = default;
18
19// Destructor
20Stoppoint::~Stoppoint() = default;
21
23
24void Stoppoint::SetID(break_id_t bid) { m_bid = bid; }
lldb::break_id_t GetID() const
Definition: Stoppoint.cpp:22
lldb::break_id_t m_bid
Definition: Stoppoint.h:36
void SetID(lldb::break_id_t bid)
Definition: Stoppoint.cpp:24
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
int32_t break_id_t
Definition: lldb-types.h:84