xref: /haiku/headers/private/app/DesktopLink.h (revision 16d5c24e533eb14b7b8a99ee9f3ec9ba66335b1e)
1 /*
2  * Copyright 2006, 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 
15 namespace BPrivate {
16 
17 class DesktopLink : public PortLink {
18 	public:
19 		DesktopLink();
20 		virtual ~DesktopLink();
21 
22 		status_t InitCheck() const;
23 
24 	private:
25 		port_id	fReplyPort;
26 };
27 
28 }	// namespace BPrivate
29 
30 #endif	/* _DESKTOP_LINK_H */
31