b8bd561224
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4768 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
391 B
C++
22 lines
391 B
C++
// TODO: This file is here just to be able to use BDirectWindow
|
|
// with BeOS R5. Remove it when we don't need it anymore
|
|
|
|
#ifndef _APP_SERVER_LINK_H
|
|
#define _APP_SERVER_LINK_H
|
|
|
|
#include <BeBuild.h>
|
|
#include <SupportDefs.h>
|
|
#include <OS.h>
|
|
#include <R5_Session.h>
|
|
|
|
class _BAppServerLink_ {
|
|
|
|
public:
|
|
_BAppServerLink_();
|
|
virtual ~_BAppServerLink_();
|
|
|
|
_BSession_ *fSession;
|
|
};
|
|
|
|
#endif
|