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

« back to all changes in this revision

Viewing changes to src/scopes/ActivationListenerBase.cpp

  • Committer: CI bot
  • Author(s): Tarmac
  • Date: 2014-03-12 16:58:32 UTC
  • mfrom: (163.45.63 devel)
  • Revision ID: ps-jenkins@lists.canonical.com-20140312165832-ngmnoud825y533pk
Sync with devel branch - updated scopes API to 0.4.0. See RELEASE_NOTES for list of all changes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Pawel Stolowski <pawel.stolowski@canonical.com>
17
17
*/
18
18
 
19
 
#include <unity/scopes/ActivationListener.h>
 
19
#include <unity/scopes/ActivationListenerBase.h>
20
20
 
21
21
namespace unity
22
22
{
24
24
namespace scopes
25
25
{
26
26
 
27
 
ActivationListener::ActivationListener()
28
 
{
29
 
}
30
 
 
31
 
ActivationListener::~ActivationListener()
32
 
{
33
 
}
34
 
 
35
 
void ActivationListener::activation_response(ActivationResponse const& /* response */)
 
27
/// @cond
 
28
ActivationListenerBase::ActivationListenerBase()
 
29
{
 
30
}
 
31
 
 
32
ActivationListenerBase::~ActivationListenerBase()
 
33
{
 
34
}
 
35
/// @endcond
 
36
 
 
37
void ActivationListenerBase::activated(ActivationResponse const& /* response */)
36
38
{
37
39
    // Intentionally empty: "do nothing" default implementation.
38
40
}
39
41
 
40
 
void ActivationListener::finished(Reason /* r */, std::string const& /* error_message */)
 
42
void ActivationListenerBase::finished(Reason /* r */, std::string const& /* error_message */)
41
43
{
42
44
    // Intentionally empty: "do nothing" default implementation.
43
45
}