summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/interfaces/interfaces.h
Side-by-side diff
Diffstat (limited to 'noncore/net/networksetup/interfaces/interfaces.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/networksetup/interfaces/interfaces.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/net/networksetup/interfaces/interfaces.h b/noncore/net/networksetup/interfaces/interfaces.h
index 26abb73..5a8feb6 100644
--- a/noncore/net/networksetup/interfaces/interfaces.h
+++ b/noncore/net/networksetup/interfaces/interfaces.h
@@ -25,13 +25,13 @@ public:
Interfaces(QString useInterfacesFile = "/etc/network/interfaces");
QStringList getInterfaceList();
bool isAuto(const QString &interface);
bool setAuto(const QString &interface, bool setAuto);
- bool removeInterface();
+ inline bool removeInterface();
bool addInterface(const QString &interface, const QString &family, const QString &method);
bool copyInterface(const QString &oldInterface, const QString &newInterface);
bool setInterface(QString interface);
inline bool isInterfaceSet();
QString getInterfaceName(bool &error);
bool setInterfaceName(const QString &newName);
@@ -42,13 +42,13 @@ public:
inline QString getInterfaceOption(const QString &option, bool &error);
inline bool setInterfaceOption(const QString &option, const QString &value);
inline bool removeInterfaceOption(const QString &option, const QString &value);
inline bool removeAllInterfaceOptions();
bool setMapping(const QString &interface);
- bool removeMapping();
+ inline bool removeMapping();
inline void addMapping(const QString &options);
inline bool setMap(const QString &map, const QString &value);
inline bool removeMap(const QString &map, const QString &value);
inline QString getMap(const QString &map, bool &error);
inline bool setScript(const QString &argument);
inline QString getScript(bool &error);
@@ -57,12 +57,13 @@ public:
private:
bool setStanza(const QString &stanza, const QString &option, QStringList::Iterator &iterator);
bool setOption(const QStringList::Iterator &start, const QString &option, const QString &value);
bool removeOption(const QStringList::Iterator &start, const QString &option, const QString &value);
QString getOption(const QStringList::Iterator &start, const QString &option, bool &error);
+ bool removeStanza(QStringList::Iterator &stanza);
bool removeAllOptions(const QStringList::Iterator &start);
QString interfacesFile;
QStringList interfaces;
QStringList::Iterator currentIface;
QStringList::Iterator currentMapping;