xref: /haiku/headers/private/app/ApplicationPrivate.h (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
1 /*
2  * Copyright 2001-2005, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Ingo Weinhold <bonefish@cs.tu-berlin.de>
7  */
8 #ifndef _APPLICATION_PRIVATE_H
9 #define _APPLICATION_PRIVATE_H
10 
11 #include <Application.h>
12 
13 class BApplication::Private {
14 public:
15 	static inline BPrivate::PortLink *ServerLink()
16 		{ return be_app->fServerLink; }
17 };
18 
19 #endif	// _APPLICATION_PRIVATE_H
20