From 835740fa2001f8831f992f16c0554dc82b448812 Mon Sep 17 00:00:00 2001 From: Bart Vandewoestyne Date: Thu, 15 Feb 2024 23:10:29 +0100 Subject: [PATCH] Add forgotten include statement. --- Behavioral_Patterns/Command/SimpleCommand.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Behavioral_Patterns/Command/SimpleCommand.h b/Behavioral_Patterns/Command/SimpleCommand.h index 4c11330..e1c5928 100644 --- a/Behavioral_Patterns/Command/SimpleCommand.h +++ b/Behavioral_Patterns/Command/SimpleCommand.h @@ -1,6 +1,8 @@ #ifndef SIMPLE_COMMAND_H #define SIMPLE_COMMAND_H +#include "Command.h" + template class SimpleCommand : public Command { public: