~ci-train-bot/ubuntu-system-settings/ubuntu-system-settings-ubuntu-yakkety-landing-027

« back to all changes in this revision

Viewing changes to tests/mocks/Ubuntu/DownloadManager/plugin.cpp

  • Committer: Bileto Bot
  • Author(s): jonas-drange
  • Date: 2016-08-17 11:18:05 UTC
  • mfrom: (1631.6.245 updates-rewrite)
  • Revision ID: ci-train-bot@canonical.com-20160817111805-moyvik9wloy79ul3
rewrite the system update panel

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
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 General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include "plugin.h"
 
18
 
 
19
#include "MockMetadata.h"
 
20
#include "MockSingleDownload.h"
 
21
#include "MockDownloadManager.h"
 
22
 
 
23
#include <QtQml>
 
24
 
 
25
void BackendPlugin::registerTypes(const char *uri)
 
26
{
 
27
    Q_ASSERT(uri == QLatin1String("Ubuntu.DownloadManager"));
 
28
    qmlRegisterType<MockMetadata>(uri, 1, 2, "Metadata");
 
29
    qmlRegisterType<MockSingleDownload>(uri, 1, 2, "SingleDownload");
 
30
    qmlRegisterType<MockDownloadManager>(uri, 1, 2, "DownloadManager");
 
31
}