xref: /haiku/headers/private/app/Server.h (revision 820dca4df6c7bf955c46e8f6521b9408f50b2900)
1 /*
2  * Copyright 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 _SERVER_H
9 #define _SERVER_H
10 
11 #include <Application.h>
12 
13 class BServer : public BApplication {
14 public:
15 	BServer(const char* signature, bool initGUI, status_t *error);
16 
17 	status_t InitGUIContext();
18 
19 private:
20 	bool	fGUIContextInitialized;
21 };
22 
23 #endif	// _SERVER_H
24