mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-20 04:25:42 +08:00
Added booking service URL to setting, updated Doxygen
This commit is contained in:
@@ -57,8 +57,7 @@ namespace BlackMisc
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief QVariant, required for DBus QVariant lists
|
* \copydoc CValueObject::toQVariant()
|
||||||
* \return
|
|
||||||
*/
|
*/
|
||||||
virtual QVariant toQVariant() const
|
virtual QVariant toQVariant() const
|
||||||
{
|
{
|
||||||
@@ -73,10 +72,15 @@ namespace BlackMisc
|
|||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Selected traffic network server
|
* Selected traffic network server
|
||||||
* \return
|
|
||||||
*/
|
*/
|
||||||
BlackMisc::Network::CServer getCurrentNetworkServer() const { return m_trafficNetworkServerCurrent; }
|
BlackMisc::Network::CServer getCurrentNetworkServer() const { return m_trafficNetworkServerCurrent; }
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief URL of booking service
|
||||||
|
* \return
|
||||||
|
*/
|
||||||
|
QString getBookingServiceUrl() const { return "http://vatbook.euroutepro.com/xml2.php"; }
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Selected traffic network server
|
* Selected traffic network server
|
||||||
* \param currentServer
|
* \param currentServer
|
||||||
@@ -86,31 +90,21 @@ namespace BlackMisc
|
|||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Traffic network server objects
|
* Traffic network server objects
|
||||||
* \return
|
|
||||||
*/
|
*/
|
||||||
void addTrafficNetworkServer(const BlackMisc::Network::CServer &server) { m_trafficNetworkServers.push_back(server); }
|
void addTrafficNetworkServer(const BlackMisc::Network::CServer &server) { m_trafficNetworkServers.push_back(server); }
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Equal operator ==
|
* \brief Equal operator ==
|
||||||
* \param other
|
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
bool operator ==(const CSettingsNetwork &other) const;
|
bool operator ==(const CSettingsNetwork &other) const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Unequal operator ==
|
* \brief Unequal operator !=
|
||||||
* \param other
|
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
bool operator !=(const CSettingsNetwork &other) const;
|
bool operator !=(const CSettingsNetwork &other) const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Value
|
* \copydoc BlackCore::IContextSettings
|
||||||
* \param path
|
|
||||||
* \param command
|
|
||||||
* \param value
|
|
||||||
* \param changedFlag
|
|
||||||
* \return
|
|
||||||
*/
|
*/
|
||||||
virtual BlackMisc::CStatusMessageList value(const QString &path, const QString &command, const QVariant &value, bool &changedFlag);
|
virtual BlackMisc::CStatusMessageList value(const QString &path, const QString &command, const QVariant &value, bool &changedFlag);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user