Files
pilotclient/src/core/corefacadeconfig.cpp
2024-12-23 15:17:06 +01:00

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