2021-04-04 21:04:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
2021-05-25 21:50:17 +01:00
|
|
|
#include <string>
|
2021-04-04 21:04:12 +01:00
|
|
|
|
|
|
|
|
#include "Event.hpp"
|
|
|
|
|
#include "src/Targets/TargetBreakpoint.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Bloom::Events
|
|
|
|
|
{
|
|
|
|
|
class SetBreakpointOnTarget: public Event
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static inline const std::string name = "SetBreakpointOnTarget";
|
|
|
|
|
std::uint32_t address;
|
2021-05-24 20:58:49 +01:00
|
|
|
Targets::TargetBreakpoint breakpoint;
|
2021-04-04 21:04:12 +01:00
|
|
|
|
|
|
|
|
std::string getName() const override {
|
|
|
|
|
return SetBreakpointOnTarget::name;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|