This commit is contained in:
Nav
2022-10-12 21:26:09 +01:00
parent 87e230c589
commit 0c1b0211e8
43 changed files with 44 additions and 44 deletions

View File

@@ -11,7 +11,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::DEBUG_SERVER_THREAD_STATE_CHANGED;
static inline const std::string name = "DebugServerThreadStateChanged";
static const inline std::string name = "DebugServerThreadStateChanged";
explicit DebugServerThreadStateChanged(ThreadState state)
: state(state)

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::DEBUG_SESSION_FINISHED;
static inline const std::string name = "DebugSessionFinished";
static const inline std::string name = "DebugSessionFinished";
[[nodiscard]] EventType getType() const override {
return DebugSessionFinished::type;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::DEBUG_SESSION_STARTED;
static inline const std::string name = "DebugSessionStarted";
static const inline std::string name = "DebugSessionStarted";
[[nodiscard]] EventType getType() const override {
return DebugSessionStarted::type;

View File

@@ -41,7 +41,7 @@ namespace Bloom::Events
QDateTime createdTimestamp = DateTime::currentDateTime();
static constexpr EventType type = EventType::GENERIC;
static inline const std::string name = "GenericEvent";
static const inline std::string name = "GenericEvent";
Event() = default;
virtual ~Event() = default;

View File

@@ -13,7 +13,7 @@ namespace Bloom::Events
explicit InsightThreadStateChanged(ThreadState state): state(state) {};
static constexpr EventType type = EventType::INSIGHT_THREAD_STATE_CHANGED;
static inline const std::string name = "InsightThreadStateChanged";
static const inline std::string name = "InsightThreadStateChanged";
[[nodiscard]] EventType getType() const override {
return InsightThreadStateChanged::type;

View File

@@ -11,7 +11,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::MEMORY_WRITTEN_TO_TARGET;
static inline const std::string name = "MemoryWrittenToTarget";
static const inline std::string name = "MemoryWrittenToTarget";
Targets::TargetMemoryType memoryType;
Targets::TargetMemoryAddress startAddress;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::PROGRAMMING_MODE_DISABLED;
static inline const std::string name = "ProgrammingModeDisabled";
static const inline std::string name = "ProgrammingModeDisabled";
[[nodiscard]] EventType getType() const override {
return ProgrammingModeDisabled::type;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::PROGRAMMING_MODE_ENABLED;
static inline const std::string name = "ProgrammingModeEnabled";
static const inline std::string name = "ProgrammingModeEnabled";
[[nodiscard]] EventType getType() const override {
return ProgrammingModeEnabled::type;

View File

@@ -11,7 +11,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::REGISTERS_WRITTEN_TO_TARGET;
static inline const std::string name = "RegistersWrittenToTarget";
static const inline std::string name = "RegistersWrittenToTarget";
Targets::TargetRegisters registers;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::SHUTDOWN_APPLICATION;
static inline const std::string name = "ShutdownApplicationEvent";
static const inline std::string name = "ShutdownApplicationEvent";
[[nodiscard]] EventType getType() const override {
return ShutdownApplication::type;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::SHUTDOWN_DEBUG_SERVER;
static inline const std::string name = "ShutdownDebugServer";
static const inline std::string name = "ShutdownDebugServer";
[[nodiscard]] EventType getType() const override {
return ShutdownDebugServer::type;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::SHUTDOWN_TARGET_CONTROLLER;
static inline const std::string name = "ShutdownTargetControllerEvent";
static const inline std::string name = "ShutdownTargetControllerEvent";
[[nodiscard]] EventType getType() const override {
return ShutdownTargetController::type;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::TARGET_CONTROLLER_ERROR_OCCURRED;
static inline const std::string name = "TargetControllerErrorOccurred";
static const inline std::string name = "TargetControllerErrorOccurred";
std::string errorMessage;

View File

@@ -11,7 +11,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::TARGET_CONTROLLER_STATE_CHANGED;
static inline const std::string name = "TargetControllerStateChanged";
static const inline std::string name = "TargetControllerStateChanged";
TargetController::TargetControllerState state;
explicit TargetControllerStateChanged(TargetController::TargetControllerState state)

View File

@@ -11,7 +11,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::TARGET_CONTROLLER_THREAD_STATE_CHANGED;
static inline const std::string name = "TargetControllerThreadStateChanged";
static const inline std::string name = "TargetControllerThreadStateChanged";
explicit TargetControllerThreadStateChanged(ThreadState state)
: state(state)

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::TARGET_EXECUTION_RESUMED;
static inline const std::string name = "TargetExecutionResumed";
static const inline std::string name = "TargetExecutionResumed";
bool stepping = false;

View File

@@ -14,7 +14,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::TARGET_EXECUTION_STOPPED;
static inline const std::string name = "TargetExecutionStopped";
static const inline std::string name = "TargetExecutionStopped";
Targets::TargetProgramCounter programCounter;
Targets::TargetBreakCause breakCause;

View File

@@ -10,7 +10,7 @@ namespace Bloom::Events
{
public:
static constexpr EventType type = EventType::TARGET_RESET;
static inline const std::string name = "TargetReset";
static const inline std::string name = "TargetReset";
[[nodiscard]] EventType getType() const override {
return TargetReset::type;