20 lines
256 B
C++
20 lines
256 B
C++
#ifndef SOCKET_H
|
|
#define SOCKET_H
|
|
|
|
#include <string>
|
|
#include "Event.h"
|
|
|
|
class Socket
|
|
{
|
|
public:
|
|
Socket(HANDLE hPipe);
|
|
virtual ~Socket(void);
|
|
|
|
std::wstring read();
|
|
|
|
private:
|
|
class PrivateData;
|
|
PrivateData *d;
|
|
};
|
|
|
|
#endif //SOCKET_H
|