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 9 #include <Server.h> 10 11 // constructor 12 BServer::BServer(const char* signature, bool initGUI, status_t* error) 13 : BApplication(signature, initGUI, error) 14 { 15 } 16 17 // InitGUIContext 18 status_t 19 BServer::InitGUIContext() 20 { 21 return _InitGUIContext(); 22 } 23