Added function stubs Socket::Socket() and Socket::write()

This commit is contained in:
Micke Prag 2010-10-08 18:55:41 +00:00
parent 53cce71b75
commit a2431533bd

View file

@ -6,6 +6,10 @@ class Socket::PrivateData {
public:
};
Socket::Socket(const std::wstring &server) {
}
Socket::Socket(SOCKET_T hPipe)
{
d = new PrivateData;
@ -18,3 +22,7 @@ Socket::~Socket(void){
std::wstring Socket::read() {
return L"";
}
void Socket::write(const std::wstring &msg) {
}