~mardy/unity-scopes-api/clientid-1554040

120.6.15 by Pawel Stolowski
Moved ActivationListener class to new files.
1
/*
2
 * Copyright (C) 2013 Canonical Ltd
3
 *
4
 * This program is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License version 3 as
6
 * 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
 * Authored by: Pawel Stolowski <pawel.stolowski@canonical.com>
17
*/
18
163.77.24 by Pawel Stolowski
Renamed ActivationListener to ActivationListenerBase.
19
#include <unity/scopes/ActivationListenerBase.h>
120.6.15 by Pawel Stolowski
Moved ActivationListener class to new files.
20
21
namespace unity
22
{
23
24
namespace scopes
25
{
26
163.77.6 by Michi Henning
Added and fixed lots of doc comments. Added tutorial.dox to list of
27
/// @cond
163.77.24 by Pawel Stolowski
Renamed ActivationListener to ActivationListenerBase.
28
ActivationListenerBase::ActivationListenerBase()
120.6.15 by Pawel Stolowski
Moved ActivationListener class to new files.
29
{
30
}
31
163.77.24 by Pawel Stolowski
Renamed ActivationListener to ActivationListenerBase.
32
ActivationListenerBase::~ActivationListenerBase()
120.6.15 by Pawel Stolowski
Moved ActivationListener class to new files.
33
{
34
}
163.77.6 by Michi Henning
Added and fixed lots of doc comments. Added tutorial.dox to list of
35
/// @endcond
120.6.15 by Pawel Stolowski
Moved ActivationListener class to new files.
36
163.77.24 by Pawel Stolowski
Renamed ActivationListener to ActivationListenerBase.
37
void ActivationListenerBase::activated(ActivationResponse const& /* response */)
120.6.15 by Pawel Stolowski
Moved ActivationListener class to new files.
38
{
39
    // Intentionally empty: "do nothing" default implementation.
40
}
41
163.77.24 by Pawel Stolowski
Renamed ActivationListener to ActivationListenerBase.
42
void ActivationListenerBase::finished(Reason /* r */, std::string const& /* error_message */)
120.6.15 by Pawel Stolowski
Moved ActivationListener class to new files.
43
{
44
    // Intentionally empty: "do nothing" default implementation.
45
}
46
47
} // namespace scopes
48
49
} // namespace unity