| 531 | |
| 532 | |
| 533 | Socket::Socket(const SocketManager& manager, Type type) : _hasToManage(false),_owner(true), _pImpl(new SocketImpl(*this,manager,type)) {} |
| 534 | Socket::Socket(SocketFile& file,const SocketManager& manager) : _hasToManage(true),_owner(true), _pImpl(new SocketImpl(*this,file,manager)) {} |
| 535 | Socket::Socket(const Socket& other) : _owner(false), _pImpl(other._pImpl),_hasToManage(false) {} |
| 536 |
nothing calls this directly
no outgoing calls
no test coverage detected