From 735f70e717b35bc52ec07196cde06e61bf09708a Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sun, 26 Aug 2018 19:06:00 +0100 Subject: [PATCH] Remove a couple of unused headers from the 6502 processor. Signed-off-by: Adrian Conlon --- M6502/inc/DisassemblyEventArgs.h | 16 ---------------- M6502/inc/ProfileEventArgs.h | 16 ---------------- M6502/src/M6502.vcxproj | 2 -- M6502/src/M6502.vcxproj.filters | 6 ------ 4 files changed, 40 deletions(-) delete mode 100644 M6502/inc/DisassemblyEventArgs.h delete mode 100644 M6502/inc/ProfileEventArgs.h diff --git a/M6502/inc/DisassemblyEventArgs.h b/M6502/inc/DisassemblyEventArgs.h deleted file mode 100644 index 2d8015a..0000000 --- a/M6502/inc/DisassemblyEventArgs.h +++ /dev/null @@ -1,16 +0,0 @@ -#pragma once - -#include - -namespace EightBit { - class DisassemblyEventArgs { - private: - std::string m_output; - - public: - DisassemblyEventArgs(std::string output) - : m_output(output) {} - - const std::string& getOutput() const { return m_output; } - }; -} \ No newline at end of file diff --git a/M6502/inc/ProfileEventArgs.h b/M6502/inc/ProfileEventArgs.h deleted file mode 100644 index d3b01a8..0000000 --- a/M6502/inc/ProfileEventArgs.h +++ /dev/null @@ -1,16 +0,0 @@ -#pragma once - -#include - -namespace EightBit { - class ProfileEventArgs { - private: - std::string m_output; - - public: - ProfileEventArgs(std::string output) - : m_output(output) {} - - const std::string& getOutput() const { return m_output; } - }; -} \ No newline at end of file diff --git a/M6502/src/M6502.vcxproj b/M6502/src/M6502.vcxproj index 39b7082..671b9ee 100644 --- a/M6502/src/M6502.vcxproj +++ b/M6502/src/M6502.vcxproj @@ -137,9 +137,7 @@ - - diff --git a/M6502/src/M6502.vcxproj.filters b/M6502/src/M6502.vcxproj.filters index ca67e17..abfd7c9 100644 --- a/M6502/src/M6502.vcxproj.filters +++ b/M6502/src/M6502.vcxproj.filters @@ -17,15 +17,9 @@ Header Files - - Header Files - Header Files - - Header Files - Header Files