summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/interfaces
authorbenmeyer <benmeyer>2002-11-08 17:42:03 (UTC)
committer benmeyer <benmeyer>2002-11-08 17:42:03 (UTC)
commit24da3ab5dd821dd552f13fa7b22f5b3c2986eecd (patch) (unidiff)
tree5403ee460b8bc628fabc1607f4d84315cddef1cd /noncore/net/networksetup/interfaces
parent56a6d067a51d741eb9be1912b69325bdd424dd84 (diff)
downloadopie-24da3ab5dd821dd552f13fa7b22f5b3c2986eecd.zip
opie-24da3ab5dd821dd552f13fa7b22f5b3c2986eecd.tar.gz
opie-24da3ab5dd821dd552f13fa7b22f5b3c2986eecd.tar.bz2
Fix compile error
Diffstat (limited to 'noncore/net/networksetup/interfaces') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/networksetup/interfaces/interfaces.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/noncore/net/networksetup/interfaces/interfaces.h b/noncore/net/networksetup/interfaces/interfaces.h
index 5a8feb6..d662919 100644
--- a/noncore/net/networksetup/interfaces/interfaces.h
+++ b/noncore/net/networksetup/interfaces/interfaces.h
@@ -28,30 +28,30 @@ public:
28 bool isAuto(const QString &interface); 28 bool isAuto(const QString &interface);
29 bool setAuto(const QString &interface, bool setAuto); 29 bool setAuto(const QString &interface, bool setAuto);
30 30
31 inline bool removeInterface(); 31 bool removeInterface();
32 bool addInterface(const QString &interface, const QString &family, const QString &method); 32 bool addInterface(const QString &interface, const QString &family, const QString &method);
33 bool copyInterface(const QString &oldInterface, const QString &newInterface); 33 bool copyInterface(const QString &oldInterface, const QString &newInterface);
34 bool setInterface(QString interface); 34 bool setInterface(QString interface);
35 inline bool isInterfaceSet(); 35 bool isInterfaceSet();
36 QString getInterfaceName(bool &error); 36 QString getInterfaceName(bool &error);
37 bool setInterfaceName(const QString &newName); 37 bool setInterfaceName(const QString &newName);
38 QString getInterfaceFamily(bool &error); 38 QString getInterfaceFamily(bool &error);
39 bool setInterfaceFamily(const QString &newName); 39 bool setInterfaceFamily(const QString &newName);
40 QString getInterfaceMethod(bool &error); 40 QString getInterfaceMethod(bool &error);
41 bool setInterfaceMethod(const QString &newName); 41 bool setInterfaceMethod(const QString &newName);
42 inline QString getInterfaceOption(const QString &option, bool &error); 42 QString getInterfaceOption(const QString &option, bool &error);
43 inline bool setInterfaceOption(const QString &option, const QString &value); 43 bool setInterfaceOption(const QString &option, const QString &value);
44 inline bool removeInterfaceOption(const QString &option, const QString &value); 44 bool removeInterfaceOption(const QString &option, const QString &value);
45 inline bool removeAllInterfaceOptions(); 45 bool removeAllInterfaceOptions();
46 46
47 bool setMapping(const QString &interface); 47 bool setMapping(const QString &interface);
48 inline bool removeMapping(); 48 bool removeMapping();
49 inline void addMapping(const QString &options); 49 void addMapping(const QString &options);
50 inline bool setMap(const QString &map, const QString &value); 50 bool setMap(const QString &map, const QString &value);
51 inline bool removeMap(const QString &map, const QString &value); 51 bool removeMap(const QString &map, const QString &value);
52 inline QString getMap(const QString &map, bool &error); 52 QString getMap(const QString &map, bool &error);
53 inline bool setScript(const QString &argument); 53 bool setScript(const QString &argument);
54 inline QString getScript(bool &error); 54 QString getScript(bool &error);
55 55
56 bool write(); 56 bool write();
57 57