From 2a39073f501cdf327682823463e03a9f023e4c09 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Thu, 16 Mar 2023 16:00:13 +0100 Subject: [PATCH] Delete Scheduler.h --- src/core/include/Scheduler.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/core/include/Scheduler.h diff --git a/src/core/include/Scheduler.h b/src/core/include/Scheduler.h deleted file mode 100644 index d5ebfcf6..00000000 --- a/src/core/include/Scheduler.h +++ /dev/null @@ -1,20 +0,0 @@ -#pragma once -#include "framework.h" -#include "luatools.h" -#include "commands.h" - -class Scheduler -{ -public: - Scheduler(lua_State* L); - ~Scheduler(); - - void appendCommand(Command* command); - void execute(lua_State* L); - void handleRequest(wstring key, json::value value); - -private: - list commands; - int load; -}; -