16 lines
210 B
C++
16 lines
210 B
C++
#ifndef CC_WEBSOCKET_H
|
|
#define CC_WEBSOCKET_H
|
|
|
|
#include "../CCMutex.h"
|
|
#include "../CCThreadPool.h"
|
|
|
|
namespace CTL{
|
|
class WebSocket {
|
|
public:
|
|
WebSocket();
|
|
~WebSocket();
|
|
};
|
|
}
|
|
|
|
|
|
#endif |