summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothhostinfo_p.h
diff options
context:
space:
mode:
authoralex <alex.blasche@nokia.com>2012-06-25 13:53:08 +1000
committerQt by Nokia <qt-info@nokia.com>2012-06-27 02:36:37 +0200
commitbc9bc3400ccecd9d7bcbbe5eee1fc49070874b4c (patch)
tree4a7ec2697a2adc1ed2e8c4394fe3f1bd321cccc7 /src/bluetooth/qbluetoothhostinfo_p.h
parent2cf4fc7c63622326780646375cf4c7c2fd014345 (diff)
Split QBluetoothHostInfo from QBluetoothLocalDevice
Change-Id: I8bd9de956c62f93b509e877128b1822ebfef69bd Reviewed-by: Michael Zanetti <michael.zanetti@nokia.com> Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
Diffstat (limited to 'src/bluetooth/qbluetoothhostinfo_p.h')
-rw-r--r--src/bluetooth/qbluetoothhostinfo_p.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/bluetooth/qbluetoothhostinfo_p.h b/src/bluetooth/qbluetoothhostinfo_p.h
new file mode 100644
index 00000000..0a079f00
--- /dev/null
+++ b/src/bluetooth/qbluetoothhostinfo_p.h
@@ -0,0 +1,64 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of the QtBluetooth module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QBLUETOOTHHOSTINFO_P_H
+#define QBLUETOOTHHOSTINFO_P_H
+
+#include "qbluetoothhostinfo.h"
+
+QT_BEGIN_HEADER
+
+QTBLUETOOTH_BEGIN_NAMESPACE
+
+class QBluetoothHostInfoPrivate
+{
+public:
+ QBluetoothHostInfoPrivate() {}
+
+ QBluetoothAddress m_address;
+ QString m_name;
+};
+
+QTBLUETOOTH_END_NAMESPACE
+
+QT_END_HEADER
+
+#endif