2005-06-28 18:53:29 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2005, Haiku.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Ingo Weinhold <bonefish@cs.tu-berlin.de>
|
|
|
|
*/
|
|
|
|
#ifndef _SERVER_H
|
|
|
|
#define _SERVER_H
|
|
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
|
|
|
|
class BServer : public BApplication {
|
|
|
|
public:
|
2005-07-03 20:55:27 +04:00
|
|
|
BServer(const char* signature, bool initGUI, status_t *error);
|
2005-06-28 18:53:29 +04:00
|
|
|
|
|
|
|
status_t InitGUIContext();
|
2005-07-03 20:55:27 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool fGUIContextInitialized;
|
2005-06-28 18:53:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _SERVER_H
|