Delete Scheduler.h

This commit is contained in:
Pax1601
2023-03-16 16:00:13 +01:00
committed by GitHub
parent 63af32c388
commit 2a39073f50

View File

@@ -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<Command*> commands;
int load;
};