diff options
Diffstat (limited to 'src/socket/Socket.hpp')
-rw-r--r-- | src/socket/Socket.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/socket/Socket.hpp b/src/socket/Socket.hpp index ed2ddb74..ebe9f68f 100644 --- a/src/socket/Socket.hpp +++ b/src/socket/Socket.hpp @@ -21,9 +21,10 @@ #include <sys/socket.h> #include "raul/Noncopyable.hpp" -#include "raul/SharedPtr.hpp" #include "raul/URI.hpp" +#include "ingen/types.hpp" + namespace Ingen { namespace Socket { @@ -71,7 +72,7 @@ public: /** Accept a connection. * @return An new open socket for the connection. */ - SharedPtr<Socket> accept(); + SPtr<Socket> accept(); /** Return the file descriptor for the socket. */ int fd() { return _sock; } |