/* Server.h ----------------- Implementation of server startup, and base socket. */ namespace XServer { class Server { public: static void Launch(); static void Shutdown(); private: Server(); static Server *instance; }; }