1254721Semaste//===-- Stoppoint.cpp -------------------------------------------*- C++ -*-===//
2254721Semaste//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6254721Semaste//
7254721Semaste//===----------------------------------------------------------------------===//
8254721Semaste
9314564Sdim#include "lldb/Breakpoint/Stoppoint.h"
10254721Semaste#include "lldb/lldb-private.h"
11254721Semaste
12254721Semaste
13254721Semasteusing namespace lldb;
14254721Semasteusing namespace lldb_private;
15254721Semaste
16254721Semaste// Stoppoint constructor
17314564SdimStoppoint::Stoppoint() : m_bid(LLDB_INVALID_BREAK_ID) {}
18254721Semaste
19254721Semaste// Destructor
20314564SdimStoppoint::~Stoppoint() {}
21254721Semaste
22314564Sdimbreak_id_t Stoppoint::GetID() const { return m_bid; }
23254721Semaste
24314564Sdimvoid Stoppoint::SetID(break_id_t bid) { m_bid = bid; }
25