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