summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/module.h
authorbenmeyer <benmeyer>2002-10-25 19:34:32 (UTC)
committer benmeyer <benmeyer>2002-10-25 19:34:32 (UTC)
commitf16dd7fc272f3f8354dc696fcc881dfe74755a21 (patch) (unidiff)
treeedaab125b322744d8684e6aee4d2c5955b68689b /noncore/settings/networksettings/module.h
parent77347ba522a5913ff17561e6fd2c15981d42e86b (diff)
downloadopie-f16dd7fc272f3f8354dc696fcc881dfe74755a21.zip
opie-f16dd7fc272f3f8354dc696fcc881dfe74755a21.tar.gz
opie-f16dd7fc272f3f8354dc696fcc881dfe74755a21.tar.bz2
Moved Interfaces into a library
Diffstat (limited to 'noncore/settings/networksettings/module.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/module.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/noncore/settings/networksettings/module.h b/noncore/settings/networksettings/module.h
index 96db5b3..92b125a 100644
--- a/noncore/settings/networksettings/module.h
+++ b/noncore/settings/networksettings/module.h
@@ -36,26 +36,24 @@ public:
36 * @param Interface* interface to check against 36 * @param Interface* interface to check against
37 * @return bool true if i is owned by this module, false otherwise. 37 * @return bool true if i is owned by this module, false otherwise.
38 */ 38 */
39 virtual bool isOwner(Interface *){ return false; }; 39 virtual bool isOwner(Interface *){ return false; };
40 40
41 /** 41 /**
42 * Create, set tabWiget and return the WLANConfigure Module 42 * Create and return the WLANConfigure Module
43 * @param Interface *i the interface to configure. 43 * @param Interface *i the interface to configure.
44 * @param tabWidget a pointer to the tab widget that this configure has. 44 * @return QWidget* pointer to this modules configure.
45 * @return QWidget* pointer to the tab widget in this modules configure.
46 */ 45 */
47 virtual QWidget *configure(Interface *, QTabWidget **){ return NULL; } ; 46 virtual QWidget *configure(Interface *){ return NULL; } ;
48 47
49 /** 48 /**
50 * Create, set tabWiget and return the Information Module 49 * Create, and return the Information Module
51 * @param Interface *i the interface to get info on. 50 * @param Interface *i the interface to get info on.
52 * @param tabWidget a pointer to the tab widget that this information has. 51 * @return QWidget* pointer to this modules info.
53 * @return QWidget* pointer to the tab widget in this modules info.
54 */ 52 */
55 virtual QWidget *information(Interface *, QTabWidget **){ return NULL; }; 53 virtual QWidget *information(Interface *){ return NULL; };
56 54
57 /** 55 /**
58 * Get all active (up or down) interfaces 56 * Get all active (up or down) interfaces
59 * @return QList<Interface> A list of interfaces that exsist that havn't 57 * @return QList<Interface> A list of interfaces that exsist that havn't
60 * been called by isOwner() 58 * been called by isOwner()
61 */ 59 */