summaryrefslogtreecommitdiff
path: root/tests/auto/qnmeapositioninfosource/qnmeapositioninfosourceproxyfactory.h
diff options
context:
space:
mode:
authoralex <alex.blasche@nokia.com>2011-11-02 18:42:18 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-04 06:34:52 +0100
commit3f9da0137a022f3e1c6e3282387a75194f701c78 (patch)
tree97e762185c47edb39a614149d32b34b0616ce310 /tests/auto/qnmeapositioninfosource/qnmeapositioninfosourceproxyfactory.h
parentaa0cdea5b994f28d4b1e3c41fbb1cf824ae16777 (diff)
downloadqtlocation-3f9da0137a022f3e1c6e3282387a75194f701c78.tar.gz
Add unit tests for QNmeaPositionInfoSource.
Change-Id: I8fa6cc3c6f0f8f2f5d3de6772a07d8d78bb77f3d Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'tests/auto/qnmeapositioninfosource/qnmeapositioninfosourceproxyfactory.h')
-rw-r--r--tests/auto/qnmeapositioninfosource/qnmeapositioninfosourceproxyfactory.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/tests/auto/qnmeapositioninfosource/qnmeapositioninfosourceproxyfactory.h b/tests/auto/qnmeapositioninfosource/qnmeapositioninfosourceproxyfactory.h
new file mode 100644
index 00000000..2105f35c
--- /dev/null
+++ b/tests/auto/qnmeapositioninfosource/qnmeapositioninfosourceproxyfactory.h
@@ -0,0 +1,88 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite 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 QNMEAPOSITIONINFOSOURCEPROXYFACTORY_H
+#define QNMEAPOSITIONINFOSOURCEPROXYFACTORY_H
+
+#include <QObject>
+
+#include <qnmeapositioninfosource.h>
+
+QT_USE_NAMESPACE
+
+class QTcpServer;
+class QIODevice;
+class QNmeaPositionInfoSource;
+
+class QNmeaPositionInfoSourceProxy : public QObject
+{
+ Q_OBJECT
+public:
+ QNmeaPositionInfoSourceProxy(QNmeaPositionInfoSource *source, QIODevice *outDevice);
+ ~QNmeaPositionInfoSourceProxy();
+
+ QGeoPositionInfoSource *source() const;
+
+ void feedUpdate(const QDateTime &dt);
+
+ void feedBytes(const QByteArray &bytes);
+
+ int updateIntervalErrorMargin() const { return 50; }
+
+private:
+ QNmeaPositionInfoSource *m_source;
+ QIODevice *m_outDevice;
+};
+
+class QNmeaPositionInfoSourceProxyFactory : public QObject
+{
+ Q_OBJECT
+public:
+ QNmeaPositionInfoSourceProxyFactory();
+
+ // proxy is created as child of source
+ QNmeaPositionInfoSourceProxy *createProxy(QNmeaPositionInfoSource *source);
+
+private:
+ QTcpServer *m_server;
+};
+
+#endif