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; -}; -