summaryrefslogtreecommitdiff
path: root/inputmethods/keyboard/keyboardimpl.h
Side-by-side diff
Diffstat (limited to 'inputmethods/keyboard/keyboardimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--inputmethods/keyboard/keyboardimpl.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/inputmethods/keyboard/keyboardimpl.h b/inputmethods/keyboard/keyboardimpl.h
index e756364..d33a822 100644
--- a/inputmethods/keyboard/keyboardimpl.h
+++ b/inputmethods/keyboard/keyboardimpl.h
@@ -21,11 +21,18 @@
#define KEYBOARDIMPL_H
#include <qpe/inputmethodinterface.h>
+namespace KeyboardInput
+{
class Keyboard;
+}
+
class QPixmap;
+namespace
+{
+
class KeyboardImpl : public InputMethodInterface
{
public:
KeyboardImpl();
@@ -42,10 +49,12 @@ public:
virtual QString name();
virtual void onKeyPress( QObject *receiver, const char *slot );
private:
- Keyboard *input;
+ KeyboardInput::Keyboard *input;
QPixmap *icn;
ulong ref;
};
+} // anonymous namespace
+
#endif