~xavi-garcia-mena/keeper/fixed-dbus-interfaces-connections-to-use-libqtdbustestrunner

« back to all changes in this revision

Viewing changes to src/client/qml-plugin/plugin.cpp

  • Committer: Charles Kerr
  • Author(s): Marcus Tomlinson
  • Date: 2016-08-29 21:07:30 UTC
  • mfrom: (91.4.17 qml-plugin)
  • Revision ID: charles.kerr@canonical.com-20160829210730-dpeufi81evkqfu3j
merge lp:~marcustomlinson/keeper/qml-plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2016 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
 *     Marcus Tomlinson <marcus.tomlinson@canonical.com>
 
18
 */
 
19
 
 
20
#include <QtQml>
 
21
#include <QtQml/QQmlContext>
 
22
 
 
23
#include <plugin.h>
 
24
 
 
25
#include <client.h>
 
26
 
 
27
void QmlKeeperPlugin::registerTypes(const char *uri)
 
28
{
 
29
    Q_ASSERT(uri == QLatin1String("Ubuntu.Keeper"));
 
30
 
 
31
    qmlRegisterType<KeeperClient>(uri, KEEPER_MAJOR, KEEPER_MINOR, "Keeper");
 
32
}
 
33
 
 
34
void QmlKeeperPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
 
35
{
 
36
    QQmlExtensionPlugin::initializeEngine(engine, uri);
 
37
}