xref: /haiku/headers/private/app/AppServerLink.h (revision 5e96d7d537fbec23bad4ae9b4c8e7b02e769f0c6)
1 /*
2  * Copyright 2001-2005, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Erik Jaesler (erik@cgsoftware.com)
7  *		Axel Dörfler, axeld@pinc-software.de
8  */
9 #ifndef APPSERVERLINK_H
10 #define APPSERVERLINK_H
11 
12 
13 #include <PortLink.h>
14 
15 
16 namespace BPrivate {
17 
18 class AppServerLink : public ServerLink {
19 	public:
20 		AppServerLink();
21 		~AppServerLink();
22 };
23 
24 }	// namespace BPrivate
25 
26 #endif	/* APPSERVERLINK_H */
27