~kaijanmaki/+junk/indicators-ng

« back to all changes in this revision

Viewing changes to services/connectivity/src/modules/Ubuntu/Connectivity/plugin.cpp

  • Committer: Antti Kaijanmäki
  • Date: 2015-09-21 20:43:11 UTC
  • Revision ID: antti.kaijanmaki@canonical.com-20150921204311-bnmu8s14n6ovobyu
foo

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *     Antti Kaijanmäki <antti.kaijanmaki@canonical.com>
 
18
 */
 
19
 
 
20
#include "plugin.h"
 
21
 
 
22
#include <QtQml>
 
23
 
 
24
#include "wifi-control.h"
 
25
 
 
26
static QObject *
 
27
networkingStatusSingletonProvider(QQmlEngine *engine, QJSEngine *scriptEngine)
 
28
{
 
29
    Q_UNUSED(scriptEngine)
 
30
 
 
31
    return new NetworkingStatus(engine);
 
32
}
 
33
 
 
34
void
 
35
QmlConnectivityNetworkingPlugin::registerTypes(const char *uri)
 
36
{
 
37
    // @uri Ubuntu.Connectivity
 
38
    qmlRegisterSingletonType<NetworkingStatus>(uri, 1, 0, "NetworkingStatus", networkingStatusSingletonProvider);
 
39
}
 
40
 
 
41
void
 
42
QmlConnectivityNetworkingPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
 
43
{
 
44
  Q_UNUSED(uri);
 
45
  Q_UNUSED(engine);
 
46
}
 
47
 
 
48