From 000ca8d4e3f9cd38fa7eec62c7df3761aa245717 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Wed, 3 Jan 2024 11:31:58 +0100 Subject: [PATCH] Fixed wrong include --- Switch.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Switch.cpp b/Switch.cpp index 42d717d..c773cf6 100644 --- a/Switch.cpp +++ b/Switch.cpp @@ -1,7 +1,5 @@ -#include +#include "Switch.h" Switch::Switch() {} -bool Switch::IsOn() { - return false; -} +bool Switch::IsOn() { return false; }