~thomas-voss/location-service/add_controller_and_service_configuration

« back to all changes in this revision

Viewing changes to include/location_service/com/ubuntu/location/space_vehicle.h

  • Committer: thomas-voss
  • Date: 2014-05-20 07:26:03 UTC
  • Revision ID: thomas.voss@canonical.com-20140520072603-avgzxsfz2lm5v6ue
Remove dbus-test runner setups as dbus-cpp provides its own fixture now.
Add documentation for space vehicle.
Adjust LTE radio cell to carry an attribute TAC instead of LAC.
Add test-cases for location::connectivity::RadioCell.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    /** @brief Numeric Id of an individual SpaceVehicle. */
36
36
    typedef std::uint32_t Id;
37
37
 
 
38
    /** @brief Enumerates all known space-vehicle types. */
38
39
    enum class Type
39
40
    {
40
41
        unknown, ///< Unknown (and thus invalid) type.
47
48
        qzss ///< Japanese regional system covering Asia and Oceania.
48
49
    };    
49
50
 
 
51
    /** @brief Uniquely identifies a space vehicle, given its type and its id. */
50
52
    struct Key
51
53
    {
52
54
        Type type = Type::unknown; ///< The positioning system this vehicle belongs to.