2006-06-10 01:46:40 +04:00
|
|
|
/*
|
2009-12-01 10:53:09 +03:00
|
|
|
* Copyright 2006-2009, Haiku.
|
2006-06-10 01:46:40 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
|
|
*/
|
|
|
|
#ifndef _DESKTOP_LINK_H
|
|
|
|
#define _DESKTOP_LINK_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <PortLink.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
|
|
class DesktopLink : public PortLink {
|
2009-12-01 10:53:09 +03:00
|
|
|
public:
|
|
|
|
DesktopLink();
|
|
|
|
virtual ~DesktopLink();
|
2006-06-10 01:46:40 +04:00
|
|
|
|
2009-12-01 10:53:09 +03:00
|
|
|
status_t InitCheck() const;
|
2006-06-10 01:46:40 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
|
|
#endif /* _DESKTOP_LINK_H */
|