Files
haiku-beta6/headers/private/app/PortLink.h
T

28 lines
462 B
C++
Raw Normal View History

/*
* Copyright 2005, Haiku.
* Distributed under the terms of the MIT License.
*
* Authors:
* Axel Dörfler, [email protected]
*/
#ifndef _PORT_LINK_H
#define _PORT_LINK_H
2002-07-09 12:24:59 +00:00
#include <ServerLink.h>
2004-07-30 15:10:19 +00:00
namespace BPrivate {
2003-10-03 22:20:28 +00:00
class PortLink : public ServerLink {
public:
PortLink(port_id sender = -1, port_id receiver = -1);
virtual ~PortLink();
void SetTo(port_id sender, port_id receiver);
2002-07-09 12:24:59 +00:00
};
} // namespace BPrivate
#endif /* _PORT_LINK_H */