summaryrefslogtreecommitdiff
path: root/libopie2
Unidiff
Diffstat (limited to 'libopie2') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/oinputsystem.cpp31
-rw-r--r--libopie2/opiecore/oinputsystem.h48
-rw-r--r--libopie2/opiecore/opiecore.pro4
3 files changed, 82 insertions, 1 deletions
diff --git a/libopie2/opiecore/oinputsystem.cpp b/libopie2/opiecore/oinputsystem.cpp
new file mode 100644
index 0000000..c33d5c8
--- a/dev/null
+++ b/libopie2/opiecore/oinputsystem.cpp
@@ -0,0 +1,31 @@
1/*
2                 This file is part of the Opie Project
3 =. (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
4 .=l.
5           .>+-=
6 _;:,     .>    :=|. This program is free software; you can
7.> <`_,   >  .   <= redistribute it and/or modify it under
8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
9.="- .-=="i,     .._ License as published by the Free Software
10 - .   .-<_>     .<> Foundation; either version 2 of the License,
11     ._= =}       : or (at your option) any later version.
12    .%`+i>       _;_.
13    .i_,=:_.      -<s. This program is distributed in the hope that
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
15    : ..    .:,     . . . without even the implied warranty of
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
18..}^=.=       =       ; Library General Public License for more
19++=   -.     .`     .: details.
20 :     =  ...= . :.=-
21 -.   .:....=;==+<; You should have received a copy of the GNU
22  -_. . .   )=.  = Library General Public License along with
23    --        :-=` this library; see the file COPYING.LIB.
24 If not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA.
27*/
28
29#include "oinputsystem.h"
30
31using namespace Opie::Core;
diff --git a/libopie2/opiecore/oinputsystem.h b/libopie2/opiecore/oinputsystem.h
new file mode 100644
index 0000000..2bcdc3a
--- a/dev/null
+++ b/libopie2/opiecore/oinputsystem.h
@@ -0,0 +1,48 @@
1/*
2                 This file is part of the Opie Project
3 =. (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
4 .=l.
5           .>+-=
6 _;:,     .>    :=|. This program is free software; you can
7.> <`_,   >  .   <= redistribute it and/or modify it under
8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
9.="- .-=="i,     .._ License as published by the Free Software
10 - .   .-<_>     .<> Foundation; either version 2 of the License,
11     ._= =}       : or (at your option) any later version.
12    .%`+i>       _;_.
13    .i_,=:_.      -<s. This program is distributed in the hope that
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
15    : ..    .:,     . . . without even the implied warranty of
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
18..}^=.=       =       ; Library General Public License for more
19++=   -.     .`     .: details.
20 :     =  ...= . :.=-
21 -.   .:....=;==+<; You should have received a copy of the GNU
22  -_. . .   )=.  = Library General Public License along with
23    --        :-=` this library; see the file COPYING.LIB.
24 If not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA.
27*/
28
29#ifndef OINPUTSYSTEM_H
30#define OINPUTSYSTEM_H
31
32#include <qobject.h>
33
34namespace Opie {
35namespace Core {
36
37/**
38 * ...
39 *
40 */
41
42class OInputSystem : public QObject
43{
44};
45}
46}
47
48#endif // OINPUTSYSTEM_H
diff --git a/libopie2/opiecore/opiecore.pro b/libopie2/opiecore/opiecore.pro
index f133433..8f76c48 100644
--- a/libopie2/opiecore/opiecore.pro
+++ b/libopie2/opiecore/opiecore.pro
@@ -6,6 +6,7 @@ HEADERS = oapplication.h \
6 odebug.h \ 6 odebug.h \
7 oglobal.h \ 7 oglobal.h \
8 oglobalsettings.h \ 8 oglobalsettings.h \
9 oinputsystem.h \
9 okeyconfigmanager.h \ 10 okeyconfigmanager.h \
10 okeyfilter.h \ 11 okeyfilter.h \
11 opluginloader.h \ 12 opluginloader.h \
@@ -21,6 +22,7 @@ SOURCES = oapplication.cpp \
21 odebug.cpp \ 22 odebug.cpp \
22 oglobal.cpp \ 23 oglobal.cpp \
23 oglobalsettings.cpp \ 24 oglobalsettings.cpp \
25 oinputsystem.cpp \
24 okeyconfigmanager.cpp \ 26 okeyconfigmanager.cpp \
25 okeyfilter.cpp \ 27 okeyfilter.cpp \
26 opluginloader.cpp \ 28 opluginloader.cpp \
@@ -46,7 +48,7 @@ include( device/device.pro )
46 48
47INTERFACES = 49INTERFACES =
48TARGET = opiecore2 50TARGET = opiecore2
49VERSION = 1.9.2 51VERSION = 1.9.3
50INCLUDEPATH += $(OPIEDIR)/include 52INCLUDEPATH += $(OPIEDIR)/include
51DEPENDPATH += $(OPIEDIR)/include 53DEPENDPATH += $(OPIEDIR)/include
52 54