summaryrefslogtreecommitdiff
path: root/tests/auto/placesplugin_unsupported/qgeoserviceproviderplugin_test.cpp
blob: 53ff60909ca98dd3ddf35669783b56605086d82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "qgeoserviceproviderplugin_test.h"

#include <QtCore/QtPlugin>
#include <QtLocation/QPlaceManagerEngine>

QGeoServiceProviderFactoryTest::QGeoServiceProviderFactoryTest()
{
}

QGeoServiceProviderFactoryTest::~QGeoServiceProviderFactoryTest()
{
}

QPlaceManagerEngine *QGeoServiceProviderFactoryTest::createPlaceManagerEngine(
        const QVariantMap &parameters,
        QGeoServiceProvider::Error *error, QString *errorString) const
{
    Q_UNUSED(error);
    Q_UNUSED(errorString);

    return new QPlaceManagerEngine(parameters);
}