You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef CONNECTIONSETTINGSENGINE_H
|
|
|
|
#define CONNECTIONSETTINGSENGINE_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <NetworkManagerQt/Connection>
|
|
|
|
#include <NetworkManagerQt/ConnectionSettings>
|
|
|
|
#include <NetworkManagerQt/Settings>
|
|
|
|
|
|
|
|
class ConnectionSettingsEngine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConnectionSettingsEngine();
|
|
|
|
|
|
|
|
static QVariantMap readConnectionSettings(QString connUuidStr);
|
|
|
|
static void modifyConnectionSettings(QString connUuidStr, QVariantMap settings);
|
|
|
|
|
|
|
|
private:
|
|
|
|
static QString userName();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CONNECTIONSETTINGSENGINE_H
|