xref: /haiku/headers/private/app/AppServerLink.h (revision 41572514dd7fec9470bb4670ef4ba2ed05aaf74d)
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