~thomas-voss/location-service/next

« back to all changes in this revision

Viewing changes to src/location/engine.h

  • 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
 
#ifndef LOCATION_SERVICE_COM_UBUNTU_LOCATION_ENGINE_H_
19
 
#define LOCATION_SERVICE_COM_UBUNTU_LOCATION_ENGINE_H_
20
 
 
21
 
#include <com/ubuntu/location/provider.h>
22
 
#include <com/ubuntu/location/provider_enumerator.h>
23
 
#include <com/ubuntu/location/provider_selection.h>
24
 
#include <com/ubuntu/location/provider_selection_policy.h>
25
 
#include <com/ubuntu/location/satellite_based_positioning_state.h>
26
 
#include <com/ubuntu/location/space_vehicle.h>
27
 
#include <com/ubuntu/location/state_tracking_provider.h>
28
 
#include <com/ubuntu/location/wifi_and_cell_reporting_state.h>
29
 
 
30
 
#include <com/ubuntu/location/settings.h>
 
18
#ifndef LOCATION_ENGINE_H_
 
19
#define LOCATION_ENGINE_H_
 
20
 
 
21
#include <location/provider.h>
 
22
#include <location/provider_enumerator.h>
 
23
#include <location/provider_selection.h>
 
24
#include <location/provider_selection_policy.h>
 
25
#include <location/satellite_based_positioning_state.h>
 
26
#include <location/space_vehicle.h>
 
27
#include <location/state_tracking_provider.h>
 
28
#include <location/wifi_and_cell_reporting_state.h>
 
29
 
 
30
#include <location/settings.h>
31
31
 
32
32
#include <core/property.h>
33
33
 
36
36
 
37
37
#include "update_policy.h"
38
38
 
39
 
namespace com
40
 
{
41
 
namespace ubuntu
42
 
{
43
39
namespace location
44
40
{
45
41
struct Criteria;
193
189
/** @brief Parses the status from the given stream. */
194
190
std::istream& operator>>(std::istream&, Engine::Status&);
195
191
}
196
 
}
197
 
}
198
192
 
199
 
#endif // LOCATION_SERVICE_COM_UBUNTU_LOCATION_ENGINE_H_
 
193
#endif // LOCATION_ENGINE_H_