blob: d05f3170c06ee3bf9299e1ddd2475068dde9c42d [file] [log] [blame]
Yu-Han Yang73f16ad2018-02-24 10:05:32 -08001#include "GnssConfiguration.h"
2
3namespace android {
4namespace hardware {
5namespace gnss {
6namespace V1_1 {
7namespace implementation {
8
9// Methods from ::android::hardware::gnss::V1_0::IGnssConfiguration follow.
10Return<bool> GnssConfiguration::setSuplEs(bool) {
11 // TODO implement
12 return bool{};
13}
14
15Return<bool> GnssConfiguration::setSuplVersion(uint32_t) {
16 // TODO implement
17 return bool{};
18}
19
20Return<bool> GnssConfiguration::setSuplMode(hidl_bitfield<SuplMode>) {
21 // TODO implement
22 return bool{};
23}
24
25Return<bool> GnssConfiguration::setGpsLock(hidl_bitfield<GpsLock>) {
26 // TODO implement
27 return bool{};
28}
29
30Return<bool> GnssConfiguration::setLppProfile(hidl_bitfield<LppProfile>) {
31 // TODO implement
32 return bool{};
33}
34
35Return<bool> GnssConfiguration::setGlonassPositioningProtocol(hidl_bitfield<GlonassPosProtocol>) {
36 // TODO implement
37 return bool{};
38}
39
40Return<bool> GnssConfiguration::setEmergencySuplPdn(bool) {
41 // TODO implement
42 return bool{};
43}
44
45// Methods from ::android::hardware::gnss::V1_1::IGnssConfiguration follow.
46Return<bool> GnssConfiguration::setBlacklist(
47 const hidl_vec<::android::hardware::gnss::V1_1::IGnssConfiguration::BlacklistedSource>&) {
48 // TODO implement
49 return bool{};
50}
51
52// Methods from ::android::hidl::base::V1_0::IBase follow.
53
54} // namespace implementation
55} // namespace V1_1
56} // namespace gnss
57} // namespace hardware
58} // namespace android