The QBluetoothTransferManager class allows the application to send data objects to other devices. Currently implemented using OPP. More...
#include <QBluetoothTransferManager>
Inherits: QObject.
This class was introduced in Qt Mobility 1.2.
enum | Operation { GetOperation, PutOperation } |
QBluetoothTransferManager ( QObject * parent = 0 ) | |
~QBluetoothTransferManager () | |
QBluetoothTransferReply * | put ( const QBluetoothTransferRequest & request, QIODevice * data ) |
void | finished ( QBluetoothTransferReply * reply ) |
The QBluetoothTransferManager class allows the application to send data objects to other devices. Currently implemented using OPP.
QBluetoothTransferManager uses OBEX to send get and put commands to remote devices.
This enum describes the type of operation that a transfer request is for.
Constant | Value | Description |
---|---|---|
QBluetoothTransferManager::GetOperation | 0 | The get operation is used to retrieve an object from a remote device. Not implemented. |
QBluetoothTransferManager::PutOperation | 1 | The put operation is used to send an object to a remote device. |
Constructs a new QBluetoothTransferManager with parent.
Destroys the QBluetoothTransferManager.
This signal is emitted when the transfer for reply finishes.
Sends the contents of data to the remote device request and returns a new QBluetoothTransferReply, that can be used to track the request's progress.