180814287SRaphael Isemann //===-- Stoppoint.cpp -----------------------------------------------------===//
230fdc8d8SChris Lattner //
32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
630fdc8d8SChris Lattner //
730fdc8d8SChris Lattner //===----------------------------------------------------------------------===//
830fdc8d8SChris Lattner 
930fdc8d8SChris Lattner #include "lldb/Breakpoint/Stoppoint.h"
10b9c1b51eSKate Stone #include "lldb/lldb-private.h"
1130fdc8d8SChris Lattner 
1230fdc8d8SChris Lattner 
1330fdc8d8SChris Lattner using namespace lldb;
1430fdc8d8SChris Lattner using namespace lldb_private;
1530fdc8d8SChris Lattner 
1630fdc8d8SChris Lattner // Stoppoint constructor
17*fd2433e1SJonas Devlieghere Stoppoint::Stoppoint() = default;
1830fdc8d8SChris Lattner 
1930fdc8d8SChris Lattner // Destructor
20*fd2433e1SJonas Devlieghere Stoppoint::~Stoppoint() = default;
2130fdc8d8SChris Lattner 
GetID() const22b9c1b51eSKate Stone break_id_t Stoppoint::GetID() const { return m_bid; }
2330fdc8d8SChris Lattner 
SetID(break_id_t bid)24b9c1b51eSKate Stone void Stoppoint::SetID(break_id_t bid) { m_bid = bid; }
25