diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-08-27 11:52:10 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-08-27 11:52:10 -0500 |
commit | 2a415e33e054e00a9b1a3385d3883f36c9c1b6d4 (patch) | |
tree | b9025bd120d65d48067e2f29ce13cf550580b119 /tdecore/kglobal.h | |
parent | cfbdd55bb39f6e2012103a506d8d2506145cc936 (diff) | |
download | tdelibs-2a415e33e054e00a9b1a3385d3883f36c9c1b6d4.tar.gz tdelibs-2a415e33e054e00a9b1a3385d3883f36c9c1b6d4.zip |
Add network manager global object to kinstance
This breaks the ABI
Diffstat (limited to 'tdecore/kglobal.h')
-rw-r--r-- | tdecore/kglobal.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tdecore/kglobal.h b/tdecore/kglobal.h index a6a60c96c..d7aadbc3f 100644 --- a/tdecore/kglobal.h +++ b/tdecore/kglobal.h @@ -26,6 +26,7 @@ class KConfig; class KSharedConfig; class KIconLoader; class TDEHardwareDevices; +class TDEGlobalNetworkManager; class KLocale; class KStandardDirs; class KStaticDeleterBase; @@ -79,12 +80,18 @@ public: static KIconLoader *iconLoader(); /** - * Returns a hardwaredevices object. - * @return the global hardwaredevices object + * Returns a TDEHardwareDevices object. + * @return the global hardware devices object */ static TDEHardwareDevices *hardwareDevices(); /** + * Returns a TDEGlobalNetworkManager object. + * @return the global network manager object + */ + static TDEGlobalNetworkManager *networkManager(); + + /** * Returns the global locale object. * @return the global locale object */ |