24 lines
483 B
C++
24 lines
483 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
#include "Event.hpp"
|
||
|
|
#include "src/Targets/TargetBreakpoint.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::Events
|
||
|
|
{
|
||
|
|
using Targets::TargetBreakpoint;
|
||
|
|
|
||
|
|
class SetBreakpointOnTarget: public Event
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static inline const std::string name = "SetBreakpointOnTarget";
|
||
|
|
std::uint32_t address;
|
||
|
|
TargetBreakpoint breakpoint;
|
||
|
|
|
||
|
|
std::string getName() const override {
|
||
|
|
return SetBreakpointOnTarget::name;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|