17 lines
280 B
C++
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
|