19 lines
338 B
C++
19 lines
338 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <set>
|
||
|
|
|
||
|
|
#include "Event.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::Events
|
||
|
|
{
|
||
|
|
class RegistersWrittenToTarget: public Event
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static inline const std::string name = "RegistersWrittenToTarget";
|
||
|
|
|
||
|
|
std::string getName() const override {
|
||
|
|
return RegistersWrittenToTarget::name;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|