brintos

brintos / llvm-project-archived public Read only

0
0
Text · 715 B · 94e97cd Raw
25 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8 9#include "lldb/Breakpoint/Stoppoint.h"10#include "lldb/lldb-private.h"11 12 13using namespace lldb;14using namespace lldb_private;15 16// Stoppoint constructor17Stoppoint::Stoppoint() = default;18 19// Destructor20Stoppoint::~Stoppoint() = default;21 22break_id_t Stoppoint::GetID() const { return m_bid; }23 24void Stoppoint::SetID(break_id_t bid) { m_bid = bid; }25