ec1bcf6243
and doesn't have to find it every time), and create_desktop_connection() that is now used from BApplication::_ConnectToServer() as well as the DesktopLink. * Move PortLink::SetTo() into base class ServerLink. * Eliminated duplicated member fReplyPort in DesktopLink. * Cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34397 a95241bf-73f2-0310-859d-f6bbb57e9c96
29 lines
438 B
C++
29 lines
438 B
C++
/*
|
|
* Copyright 2005-2009, Haiku.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
*/
|
|
#ifndef _PORT_LINK_H
|
|
#define _PORT_LINK_H
|
|
|
|
|
|
#include <ServerLink.h>
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
class PortLink : public ServerLink {
|
|
public:
|
|
PortLink(port_id sender = -1,
|
|
port_id receiver = -1);
|
|
virtual ~PortLink();
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
#endif /* _PORT_LINK_H */
|