Added function stubs to Socket in unix

This commit is contained in:
Micke Prag 2010-10-08 12:28:07 +00:00
parent 2c14c779af
commit b806913cea
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#include "Socket.h"
using namespace TelldusCore;
class Socket::PrivateData {
public:
};
Socket::Socket(SOCKET_T hPipe)
{
d = new PrivateData;
}
Socket::~Socket(void){
delete d;
}
std::wstring Socket::read() {
return L"";
}