1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:expandtab:shiftwidth=2:tabstop=2:
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef __nsRemoteServer_h__
9 #define __nsRemoteServer_h__
13 class nsRemoteServer
{
15 virtual ~nsRemoteServer() = default;
17 virtual nsresult
Startup(const char* aAppName
, const char* aProfileName
) = 0;
18 virtual void Shutdown() = 0;
21 #endif // __nsRemoteServer_h__