summaryrefslogtreecommitdiff
path: root/core/obex/obex.h
authorkorovkin <korovkin>2006-07-06 16:28:08 (UTC)
committer korovkin <korovkin>2006-07-06 16:28:08 (UTC)
commit43cd66c08de4447998028179d20fd4817aaf16ca (patch) (side-by-side diff)
tree87888aadc3398c3c633e332cda46d92bb0522d6a /core/obex/obex.h
parentadcfc6f4afe184a9eb6fbf458616494dfe0dadda (diff)
downloadopie-43cd66c08de4447998028179d20fd4817aaf16ca.zip
opie-43cd66c08de4447998028179d20fd4817aaf16ca.tar.gz
opie-43cd66c08de4447998028179d20fd4817aaf16ca.tar.bz2
Added OBEX Push functionality for Bluetooth.
- Added ObexBase - asic class for IR and BT Obex - Added ObexServer - OBEX Push server.
Diffstat (limited to 'core/obex/obex.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obex.h40
1 files changed, 35 insertions, 5 deletions
diff --git a/core/obex/obex.h b/core/obex/obex.h
index 5993976..36ff29a 100644
--- a/core/obex/obex.h
+++ b/core/obex/obex.h
@@ -1,14 +1,44 @@
+/*
+� � � � � � � �=. This file is part of the OPIE Project
+� � � � � � �.=l. Copyright (c) 2002 Maximilian Reiss <max.reiss@gmx.de>
+� � � � � �.>+-=
+�_;:, � � .> � �:=|. This library is free software; you can
+.> <, � > �. � <= redistribute it and/or modify it under
+:=1 )Y*s>-.-- � : the terms of the GNU Library General Public
+.="- .-=="i, � � .._ License as published by the Free Software
+�- . � .-<_> � � .<> Foundation; version 2 of the License.
+� � �._= =} � � � :
+� � .%+i> � � � _;_.
+� � .i_,=:_. � � �-<s. This library 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.
+*/
+/*
+ * The Infrared OBEX handling class declaration
+ */
#ifndef OpieObex_H
#define OpieObex_H
+#include "obexbase.h"
#include <qobject.h>
namespace Opie {namespace Core {class OProcess;}}
class QCopChannel;
namespace OpieObex {
- class Obex : public QObject {
+ class Obex : public ObexBase {
Q_OBJECT
public:
/**
@@ -24,9 +54,9 @@ namespace OpieObex {
* Starting listening to irda after enabled by the applet
* a signal gets emitted when received a file
*/
- void receive();
- void send( const QString& );
- void setReceiveEnabled( bool = false );
+ virtual void receive();
+ virtual void send(const QString& filename, const QString& addr);
+ virtual void setReceiveEnabled( bool = false );
signals:
/**
@@ -69,7 +99,7 @@ private slots:
// the process exited
void slotExited(Opie::Core::OProcess* proc) ;
void slotStdOut(Opie::Core::OProcess*, char*, int);
- void slotError();
+ virtual void slotError();
private:
void sendNow();