add socketio, http post & get

This commit is contained in:
Lion Kortlepel
2021-02-16 12:37:55 +01:00
committed by Anonymous275
parent 4cda6e8bc3
commit ef5db013b3
12 changed files with 487 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include "IThreaded.h"
#include "Common.h"
class THeartbeatThread : public IThreaded {
public:
THeartbeatThread();
void operator()() override;
};