Added function stubs Socket::Socket() and Socket::write()
This commit is contained in:
parent
53cce71b75
commit
a2431533bd
1 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,10 @@ class Socket::PrivateData {
|
||||||
public:
|
public:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Socket::Socket(const std::wstring &server) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
Socket::Socket(SOCKET_T hPipe)
|
Socket::Socket(SOCKET_T hPipe)
|
||||||
{
|
{
|
||||||
d = new PrivateData;
|
d = new PrivateData;
|
||||||
|
@ -18,3 +22,7 @@ Socket::~Socket(void){
|
||||||
std::wstring Socket::read() {
|
std::wstring Socket::read() {
|
||||||
return L"";
|
return L"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Socket::write(const std::wstring &msg) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue