summaryrefslogtreecommitdiffstats
path: root/tdecore/kinstance.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-29 17:11:06 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-29 17:11:06 -0500
commit22f8381c08ec2c39dbafb9d9851c2b55d94be4a8 (patch)
tree030156035a2203c377221fbf50e0ad2c9ed1f6ce /tdecore/kinstance.h
parent2b5fed5f0e79c29ad49b0926cf4433114abe335c (diff)
downloadtdelibs-22f8381c08ec2c39dbafb9d9851c2b55d94be4a8.tar.gz
tdelibs-22f8381c08ec2c39dbafb9d9851c2b55d94be4a8.zip
Add initial tdehardwaredevices skeleton to tdecore
Do not use the added classes yet, as the API and ABI are still under heavy construction!
Diffstat (limited to 'tdecore/kinstance.h')
-rw-r--r--tdecore/kinstance.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tdecore/kinstance.h b/tdecore/kinstance.h
index 22da3bb3c..75cc4b46a 100644
--- a/tdecore/kinstance.h
+++ b/tdecore/kinstance.h
@@ -27,6 +27,7 @@ class TQFont;
class KInstancePrivate;
class KMimeSourceFactory;
class KSharedConfig;
+class TDEHardwareDevices;
#include <tqstring.h>
#include "tdelibs_export.h"
@@ -101,6 +102,12 @@ class TDECORE_EXPORT KInstance
KIconLoader *iconLoader() const;
/**
+ * Returns a hardwaredevices object.
+ * @return the hardwaredevices object.
+ */
+ TDEHardwareDevices *hardwareDevices() const;
+
+ /**
* Re-allocate the global iconloader.
*/
void newIconLoader() const;
@@ -146,6 +153,8 @@ private:
mutable KConfig *_config;
mutable KIconLoader *_iconLoader;
+ mutable TDEHardwareDevices *_hardwaredevices;
+
TQCString _name;
const KAboutData *_aboutData;