diff --git a/src/EventManager/Events/Events.hpp b/src/EventManager/Events/Events.hpp index 7c3c1bd3..2998c181 100644 --- a/src/EventManager/Events/Events.hpp +++ b/src/EventManager/Events/Events.hpp @@ -16,7 +16,6 @@ #include "TargetExecutionResumed.hpp" #include "TargetExecutionStopped.hpp" #include "MemoryWrittenToTarget.hpp" -#include "InsightThreadStateChanged.hpp" #include "TargetReset.hpp" #include "ProgrammingModeEnabled.hpp" #include "ProgrammingModeDisabled.hpp" diff --git a/src/EventManager/Events/InsightThreadStateChanged.hpp b/src/EventManager/Events/InsightThreadStateChanged.hpp deleted file mode 100644 index 3ce2e48f..00000000 --- a/src/EventManager/Events/InsightThreadStateChanged.hpp +++ /dev/null @@ -1,33 +0,0 @@ -#pragma once - -#include - -#include "Event.hpp" -#include "src/Helpers/Thread.hpp" - -namespace Bloom::Events -{ - class InsightThreadStateChanged: public Event - { - public: - explicit InsightThreadStateChanged(ThreadState state): state(state) {}; - - static constexpr EventType type = EventType::INSIGHT_THREAD_STATE_CHANGED; - static const inline std::string name = "InsightThreadStateChanged"; - - [[nodiscard]] EventType getType() const override { - return InsightThreadStateChanged::type; - } - - [[nodiscard]] std::string getName() const override { - return InsightThreadStateChanged::name; - } - - ThreadState getState() const { - return this->state; - } - - private: - ThreadState state; - }; -}