Added function stubs to Socket in unix
This commit is contained in:
parent
2c14c779af
commit
b806913cea
2 changed files with 26 additions and 0 deletions
20
telldus-core/common/Socket_unix.cpp
Normal file
20
telldus-core/common/Socket_unix.cpp
Normal 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"";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue