2005-06-15 01:28:56 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2001-2005, Haiku.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Erik Jaesler (erik@cgsoftware.com)
|
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
|
|
*/
|
2002-10-25 05:10:10 +04:00
|
|
|
#ifndef APPSERVERLINK_H
|
|
|
|
#define APPSERVERLINK_H
|
|
|
|
|
|
|
|
|
2003-10-04 23:06:34 +04:00
|
|
|
#include <PortLink.h>
|
2002-10-25 05:10:10 +04:00
|
|
|
|
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
2005-06-15 01:28:56 +04:00
|
|
|
class AppServerLink : public ServerLink {
|
2005-06-04 21:16:49 +04:00
|
|
|
public:
|
2005-06-15 01:28:56 +04:00
|
|
|
AppServerLink(void);
|
|
|
|
~AppServerLink(void);
|
2002-10-25 05:10:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
2005-06-04 21:16:49 +04:00
|
|
|
#endif /* APPSERVERLINK_H */
|