~thomas-voss/location-service/unify-source-code-formatting

« back to all changes in this revision

Viewing changes to include/location_service/com/ubuntu/location/providers/skyhook/provider.h

  • Committer: thomas-voss
  • Date: 2015-02-03 09:07:56 UTC
  • Revision ID: thomas.voss@canonical.com-20150203090756-czqdnnoqoi3uxd1v
Unify source code formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
{
36
36
class Provider : public com::ubuntu::location::Provider
37
37
{
38
 
  public:
 
38
public:
39
39
    static Provider::Ptr create_instance(const ProviderFactory::Configuration& config);
40
 
    
 
40
 
41
41
    static const Provider::FeatureFlags& default_feature_flags();
42
42
    static const Provider::RequirementFlags& default_requirement_flags();
43
43
 
68
68
    virtual void start_heading_updates();
69
69
    virtual void stop_heading_updates();
70
70
 
71
 
  private:
 
71
private:
72
72
    struct Private;
73
73
    std::unique_ptr<Private> d;
74
74
};