Ref T301, make login mode via contexts available

This commit is contained in:
Klaus Basan
2018-08-12 03:08:29 +02:00
parent 7805e2315c
commit 7b360e03cc
6 changed files with 27 additions and 1 deletions

View File

@@ -333,6 +333,11 @@ namespace BlackCore
return m_dBusInterface->callDBusRet<BlackMisc::Network::CServer>(QLatin1String("getConnectedServer"));
}
INetwork::LoginMode CContextNetworkProxy::getLoginMode() const
{
return m_dBusInterface->callDBusRet<BlackCore::INetwork::LoginMode>(QLatin1String("getLoginMode"));
}
bool CContextNetworkProxy::parseCommandLine(const QString &commandLine, const CIdentifier &originator)
{
return m_dBusInterface->callDBusRet<bool>(QLatin1String("parseCommandLine"), commandLine, originator);