28 lines
265 B
C++
28 lines
265 B
C++
//
|
|
// Created by 胡宇 on 2020/10/23.
|
|
//
|
|
|
|
#ifndef NET_TCP_SESSION_H
|
|
#define NET_TCP_SESSION_H
|
|
|
|
// 基础依赖
|
|
#include <project.h>
|
|
|
|
// 扩展依赖
|
|
#include "tcp.h"
|
|
|
|
class TCPSession {
|
|
public:
|
|
|
|
TCPSession(){
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif //NET_TCP_SESSION_H
|