1 /* 2 * Copyright 2005-2010, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Axel Dörfler, axeld@pinc-software.de 7 */ 8 #ifndef _PORT_LINK_H 9 #define _PORT_LINK_H 10 11 12 #include <ServerLink.h> 13 14 15 namespace BPrivate { 16 17 18 class PortLink : public ServerLink { 19 public: 20 PortLink(port_id sender = -1, 21 port_id receiver = -1); 22 virtual ~PortLink(); 23 }; 24 25 26 } // namespace BPrivate 27 28 #endif /* _PORT_LINK_H */ 29