Let's make (git) history!
Tento commit je obsažen v:
18
gateway/gatewayinterface.h
Normální soubor
18
gateway/gatewayinterface.h
Normální 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
|
Odkázat v novém úkolu
Zablokovat Uživatele