Added stub Socket::connect()
This commit is contained in:
parent
10e8d34e41
commit
44beddc80f
1 changed files with 6 additions and 3 deletions
|
@ -6,8 +6,8 @@ class Socket::PrivateData {
|
|||
public:
|
||||
};
|
||||
|
||||
Socket::Socket(const std::wstring &server) {
|
||||
|
||||
Socket::Socket() {
|
||||
d = new PrivateData;
|
||||
}
|
||||
|
||||
Socket::Socket(SOCKET_T hPipe)
|
||||
|
@ -15,10 +15,13 @@ Socket::Socket(SOCKET_T hPipe)
|
|||
d = new PrivateData;
|
||||
}
|
||||
|
||||
Socket::~Socket(void){
|
||||
Socket::~Socket(void) {
|
||||
delete d;
|
||||
}
|
||||
|
||||
void Socket::connect(const std::wstring &server) {
|
||||
}
|
||||
|
||||
std::wstring Socket::read() {
|
||||
return L"";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue