2005-06-14 21:28:56 +00: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 01:10:10 +00:00
|
|
|
#ifndef APPSERVERLINK_H
|
|
|
|
#define APPSERVERLINK_H
|
|
|
|
|
|
|
|
|
2003-10-04 19:06:34 +00:00
|
|
|
#include <PortLink.h>
|
2002-10-25 01:10:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
2005-06-14 21:28:56 +00:00
|
|
|
class AppServerLink : public ServerLink {
|
2005-06-04 17:16:49 +00:00
|
|
|
public:
|
2005-11-07 16:14:05 +00:00
|
|
|
AppServerLink();
|
|
|
|
~AppServerLink();
|
2002-10-25 01:10:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
2005-06-04 17:16:49 +00:00
|
|
|
#endif /* APPSERVERLINK_H */
|