Let's make (git) history!

这个提交包含在:
2018-11-03 17:12:20 +01:00
当前提交 3bfebfe8a8
共有 212 个文件被更改,包括 11970 次插入0 次删除

18
gateway/gatewayinterface.h 普通文件
查看文件

@@ -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