~mterry/indicator-sound/snap-root

« back to all changes in this revision

Viewing changes to tests/service-mocks/DBusPropertiesNotifier.h

  • Committer: CI Train Bot
  • Author(s): Xavi Garcia Mena
  • Date: 2016-01-05 15:08:02 UTC
  • mfrom: (513.1.2 restore-osd-notifications)
  • Revision ID: ci-train-bot@canonical.com-20160105150802-9n0tg5ipbbq2qbab
This branch just readds the OSD notifications code, that was reverted in trunk as the corresponding silo was also rolled back after landing.
Approved by: PS Jenkins bot, Xavi Garcia

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Xavi Garcia <xavi.garcia.mena@canonical.com>
 
17
 */
 
18
#pragma once
 
19
 
 
20
#include <QDBusConnection>
 
21
 
 
22
namespace ubuntu
 
23
{
 
24
 
 
25
namespace indicators
 
26
{
 
27
 
 
28
namespace testing
 
29
{
 
30
 
 
31
class DBusPropertiesNotifier
 
32
{
 
33
public:
 
34
    DBusPropertiesNotifier() = default;
 
35
    ~DBusPropertiesNotifier() = default;
 
36
 
 
37
    void notifyPropertyChanged(QDBusConnection const & connection,
 
38
                               QString const & interface,
 
39
                               QString const & path,
 
40
                               QString const & propertyName,
 
41
                               QVariant const & propertyValue);
 
42
};
 
43
 
 
44
} // namespace testing
 
45
 
 
46
} // namespace indicators
 
47
 
 
48
} // namespace ubuntu