30 lines
679 B
C++
30 lines
679 B
C++
/*
|
|||
* Copyright 2001-2006, Haiku.
|
|||
* Distributed under the terms of the MIT License.
|
|||
|
|
*
|
||
|
|
* Authors:
|
||
|
|
* Ingo Weinhold <[email protected]>
|
||
|
|
*/
|
||
|
|
#ifndef _APPLICATION_PRIVATE_H
|
||
|
|
#define _APPLICATION_PRIVATE_H
|
||
|
|
|
||
|
|||
#include <Application.h>
|
|||
|
|
|
||
struct server_read_only_memory;
|
|||
|
|
|
||
|
|||
class BApplication::Private {
|
|||
public:
|
|||
|
|
static inline BPrivate::PortLink *ServerLink()
|
||
|
|
{ return be_app->fServerLink; }
|
||
|
|
|
||
|
|
static inline BPrivate::ServerMemoryAllocator* ServerAllocator()
|
||
|
|
{ return be_app->fServerAllocator; }
|
||
|
|||
|
|
static inline server_read_only_memory* ServerReadOnlyMemory()
|
||
|
|
{ return (server_read_only_memory*)be_app->fServerReadOnlyMemory; }
|
||
};
|
|||
|
|
|
||
|
|
#endif // _APPLICATION_PRIVATE_H
|