Let's make (git) history!

Tento commit je obsažen v:
2018-11-03 17:12:20 +01:00
revize 3bfebfe8a8
212 změnil soubory, kde provedl 11970 přidání a 0 odebrání

18
gateway/gatewayinterface.h Normální soubor
Zobrazit soubor

@@ -0,0 +1,18 @@
#ifndef GATEWAYINTERFACE_H
#define GATEWAYINTERFACE_H
#include "../request.h"
#include "../response.h"
#include "../config.h"
#include "../requestworker.h"
class GatewayInterface
{
public:
GatewayInterface();
virtual bool keepReading() = 0;
virtual void work(RequestWorker &worker) = 0;
virtual ~GatewayInterface()
{
}
};
#endif // GATEWAYINTERFACE_H