a8/a8/httpsession.h
2018-08-26 20:34:01 +08:00

17 lines
280 B
C++

#ifndef A8_HTTPSESSON_H
#define A8_HTTPSESSION_H
#include <a8/basehttpsession.h>
namespace a8
{
class HttpSession : public BaseHttpSession
{
protected:
virtual void DecodeUserPacket(char* buf, int& offset, unsigned int buflen) override {};
};
}
#endif