Include right Socket.h

Seppo Takalo 2016-06-15 14:20:53 +03:00
parent 48fe3d6891
commit 36e29b4bed
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
#include "Socket.h" #include "NetworkSocketAPI/Socket.h"
Socket::Socket() Socket::Socket()
: _iface(0) : _iface(0)

View File

@ -17,7 +17,7 @@
#ifndef TCPSERVER_H #ifndef TCPSERVER_H
#define TCPSERVER_H #define TCPSERVER_H
#include "Socket.h" #include "NetworkSocketAPI/Socket.h"
#include "TCPSocket.h" #include "TCPSocket.h"
#include "NetworkStack.h" #include "NetworkStack.h"
#include "Semaphore.h" #include "Semaphore.h"

View File

@ -17,7 +17,7 @@
#ifndef TCPSOCKET_H #ifndef TCPSOCKET_H
#define TCPSOCKET_H #define TCPSOCKET_H
#include "Socket.h" #include "NetworkSocketAPI/Socket.h"
#include "NetworkStack.h" #include "NetworkStack.h"
#include "Semaphore.h" #include "Semaphore.h"

View File

@ -17,7 +17,7 @@
#ifndef UDPSOCKET_H #ifndef UDPSOCKET_H
#define UDPSOCKET_H #define UDPSOCKET_H
#include "Socket.h" #include "NetworkSocketAPI/Socket.h"
#include "NetworkStack.h" #include "NetworkStack.h"
#include "Semaphore.h" #include "Semaphore.h"