summaryrefslogtreecommitdiffstats
path: root/src/connectivity/bluetooth/qbluetoothtransferreply.h
diff options
context:
space:
mode:
authorAndrew Stanley-Jones <andrew.stanley-jones@nokia.com>2011-03-21 16:31:09 +1000
committerAndrew Stanley-Jones <andrew.stanley-jones@nokia.com>2011-03-21 16:42:08 +1000
commit3b0987224b6120788d146bf8e1e483668130b0cb (patch)
tree5723658b9bd9aa2c14f3c55aa2c2d97da990f2d7 /src/connectivity/bluetooth/qbluetoothtransferreply.h
parent9c339db8a2290e722d66f909ca6cd9cc45353b69 (diff)
Add d_ptr's to missing bluetooth classes
Fix up the QML tennis example to make it more clear.
Diffstat (limited to 'src/connectivity/bluetooth/qbluetoothtransferreply.h')
-rw-r--r--src/connectivity/bluetooth/qbluetoothtransferreply.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/connectivity/bluetooth/qbluetoothtransferreply.h b/src/connectivity/bluetooth/qbluetoothtransferreply.h
index 3cd82d100e..dd0621c2f9 100644
--- a/src/connectivity/bluetooth/qbluetoothtransferreply.h
+++ b/src/connectivity/bluetooth/qbluetoothtransferreply.h
@@ -51,6 +51,8 @@ QT_BEGIN_HEADER
QTM_BEGIN_NAMESPACE
+class QBluetoothTransferReplyPrivate;
+
class Q_CONNECTIVITY_EXPORT QBluetoothTransferReply : public QObject
{
Q_OBJECT
@@ -90,16 +92,14 @@ protected:
explicit QBluetoothTransferReply(QObject *parent = 0);
void setAttribute(QBluetoothTransferRequest::Attribute code, const QVariant &value);
void setOperation(QBluetoothTransferManager::Operation operation);
- void setManager(QBluetoothTransferManager &manager);
+ void setManager(QBluetoothTransferManager *manager);
// void setRequest(QBluetoothTransferRequest *request);
-private:
- QBluetoothTransferManager *m_manager;
- QBluetoothTransferManager::Operation m_operation;
- QMap<int, QVariant> m_attributes;
-// QBluetoothTransferRequest *m_request;
- qint64 m_buffersize;
+protected:
+ QBluetoothTransferReplyPrivate *d_ptr;
+private:
+ Q_DECLARE_PRIVATE(QBluetoothTransferReply)
};