-rw-r--r-- | core/tools/hotplug-qcop/config.in | 5 | ||||
-rw-r--r-- | core/tools/hotplug-qcop/hotplug-qcop.pro | 16 | ||||
-rw-r--r-- | core/tools/hotplug-qcop/main.cpp | 45 |
3 files changed, 66 insertions, 0 deletions
diff --git a/core/tools/hotplug-qcop/config.in b/core/tools/hotplug-qcop/config.in new file mode 100644 index 0000000..79abb6a --- a/dev/null +++ b/core/tools/hotplug-qcop/config.in @@ -0,0 +1,5 @@ + config HOTPLUG_QCOP + boolean "The HotPlug -> QCop Event Bridge" + default "y" + depends ( LIBQPE || LIBQPE-X11 ) + diff --git a/core/tools/hotplug-qcop/hotplug-qcop.pro b/core/tools/hotplug-qcop/hotplug-qcop.pro new file mode 100644 index 0000000..4ab7e03 --- a/dev/null +++ b/core/tools/hotplug-qcop/hotplug-qcop.pro @@ -0,0 +1,16 @@ +TEMPLATE = app +CONFIG += qt warn_on +DESTDIR = $(OPIEDIR)/bin + +HEADERS = +SOURCES = main.cpp +INTERFACES = + +INCLUDEPATH += $(OPIEDIR)/include +LIBS += -lqpe + +TARGET = hotplug-qcop +VERSION = 0.0.0 +AUTHOR = Michael 'Mickey' Lauer <mickey@Vanille.de> + +include( $(OPIEDIR)/include.pro ) diff --git a/core/tools/hotplug-qcop/main.cpp b/core/tools/hotplug-qcop/main.cpp new file mode 100644 index 0000000..bd5431d --- a/dev/null +++ b/core/tools/hotplug-qcop/main.cpp @@ -0,0 +1,45 @@ +/* + This file is part of the Opie Project + (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de> + =. + .=l. + .>+-= + _;:, .> :=|. This program is free software; you can +.> <`_, > . <= redistribute it and/or modify it under +:`=1 )Y*s>-.-- : the terms of the GNU General Public +.="- .-=="i, .._ License as published by the Free Software + - . .-<_> .<> Foundation; version 2 of the License. + ._= =} : + .%`+i> _;_. + .i_,=:_. -<s. This program is distributed in the hope that + + . -:. = it will be useful, but WITHOUT ANY WARRANTY; + : .. .:, . . . without even the implied warranty of + =_ + =;=|` MERCHANTABILITY or FITNESS FOR A + _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU +..}^=.= = ; Library General Public License for more +++= -. .` .: details. + : = ...= . :.=- + -. .:....=;==+<; You should have received a copy of the GNU + -_. . . )=. = Library General Public License along with + -- :-=` this library; see the file COPYING.LIB. + If not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. +*/ + +/* OPIE */ +#include <qpe/qcopenvelope_qws.h> + +/* QT */ +#include <qstring.h> + +/* STD */ +#include <stdlib.h> + +int main( int argc, char** argv ) +{ + qDebug( "NOTE: hotplug-qcop started" ); + qDebug( "... now doing something meaningful ..." ); + qDebug( "NOTE: hotplug-qcop ended" ); + return 0; +} |