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