~elopio/unity8/test_open_dash

« back to all changes in this revision

Viewing changes to tests/mocks/Ubuntu/Telephony/MockTelepathyHelper.cpp

  • Committer: Leo Arias
  • Date: 2014-07-10 14:19:40 UTC
  • mfrom: (973.1.63 unity8)
  • Revision ID: leo.arias@canonical.com-20140710141940-ijglf4whjkp9ugn0
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2014 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
 * Authored by: Nick Dedekind <nick.dedekind@canonical.com
 
17
 */
 
18
 
 
19
#include "MockTelepathyHelper.h"
 
20
 
 
21
MockTelepathyHelper::MockTelepathyHelper(QObject *parent)
 
22
    : QObject(parent)
 
23
{
 
24
}
 
25
 
 
26
MockTelepathyHelper *MockTelepathyHelper::instance()
 
27
{
 
28
    static MockTelepathyHelper* helper = new MockTelepathyHelper();
 
29
    return helper;
 
30
}
 
31
 
 
32
void MockTelepathyHelper::registerChannelObserver(const QString& name)
 
33
{
 
34
    Q_UNUSED(name);
 
35
}