mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
12 lines
450 B
C++
12 lines
450 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2013 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "core/corefacadeconfig.h"
|
|
|
|
namespace swift::core
|
|
{
|
|
bool CCoreFacadeConfig::requiresDBusSever() const { return m_contextMode == LocalInDBusServer; }
|
|
|
|
bool CCoreFacadeConfig::requiresDBusConnection() const { return m_contextMode == Remote; }
|
|
} // namespace swift::core
|