~thomas-voss/location-service/ramp-up-abi-stability

« back to all changes in this revision

Viewing changes to src/location/service/session/interface.cpp

  • Committer: Thomas Voß
  • Date: 2016-06-27 11:05:34 UTC
  • mfrom: (258.1.3 simplify-namespaces)
  • Revision ID: thomas.voss@canonical.com-20160627110534-vgl06rzgh7if12uo
Merge lp:~thomas-voss/location-service/simplify-namespaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *
16
16
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
17
17
 */
18
 
#include <com/ubuntu/location/service/session/interface.h>
 
18
#include <location/service/session/interface.h>
19
19
 
20
20
#include <core/dbus/codec.h>
21
21
#include <core/dbus/service.h>
22
22
#include <core/dbus/traits/service.h>
23
23
#include <core/dbus/types/object_path.h>
24
24
 
25
 
namespace cul = com::ubuntu::location;
26
 
namespace culs = com::ubuntu::location::service;
27
 
namespace culss = com::ubuntu::location::service::session;
28
 
 
29
25
namespace dbus = core::dbus;
30
26
 
31
 
struct culss::Interface::Private
 
27
struct location::service::session::Interface::Private
32
28
{
33
 
    culss::Interface::Updates updates;
 
29
    location::service::session::Interface::Updates updates;
34
30
};
35
31
 
36
 
culss::Interface::Interface() : d{new Private{}}
37
 
{
38
 
}
39
 
 
40
 
culss::Interface::~Interface() noexcept
41
 
{
42
 
}
43
 
 
44
 
culss::Interface::Updates& culss::Interface::updates()
 
32
location::service::session::Interface::Interface() : d{new Private{}}
 
33
{
 
34
}
 
35
 
 
36
location::service::session::Interface::~Interface() noexcept
 
37
{
 
38
}
 
39
 
 
40
location::service::session::Interface::Updates& location::service::session::Interface::updates()
45
41
{
46
42
    return d->updates;
47
43
}