1dda28197Spatrick //===-- Stoppoint.cpp -----------------------------------------------------===// 2061da546Spatrick // 3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information. 5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6061da546Spatrick // 7061da546Spatrick //===----------------------------------------------------------------------===// 8061da546Spatrick 9061da546Spatrick #include "lldb/Breakpoint/Stoppoint.h" 10061da546Spatrick #include "lldb/lldb-private.h" 11061da546Spatrick 12061da546Spatrick 13061da546Spatrick using namespace lldb; 14061da546Spatrick using namespace lldb_private; 15061da546Spatrick 16061da546Spatrick // Stoppoint constructor 17*be691f3bSpatrick Stoppoint::Stoppoint() = default; 18061da546Spatrick 19061da546Spatrick // Destructor 20*be691f3bSpatrick Stoppoint::~Stoppoint() = default; 21061da546Spatrick GetID() const22061da546Spatrickbreak_id_t Stoppoint::GetID() const { return m_bid; } 23061da546Spatrick SetID(break_id_t bid)24061da546Spatrickvoid Stoppoint::SetID(break_id_t bid) { m_bid = bid; } 25