blob: 404b5da67cb0e5203c6c8aef0fcc1bb381bcb0d4 [file] [log] [blame]
Wyatt Rileyad03ab22016-12-14 14:54:29 -08001#include "GnssBatching.h"
2
3namespace android {
4namespace hardware {
5namespace gnss {
6namespace V1_0 {
7namespace implementation {
8
9GnssBatching::GnssBatching(const FlpLocationInterface* flpLocationIface) :
10 mFlpLocationIface(flpLocationIface) {}
11
12
13// Methods from ::android::hardware::gnss::V1_0::IGnssBatching follow.
14Return<bool> GnssBatching::init(const sp<IGnssBatchingCallback>& callback) {
15 // TODO(b/34133439) implement
16 return false;
17}
18
19Return<uint16_t> GnssBatching::getBatchSize() {
20 // TODO(b/34133439) implement
21 return 0;
22}
23
24Return<bool> GnssBatching::start(const IGnssBatching::Options& options) {
25 // TODO(b/34133439) implement
26 return false;
27}
28
29Return<void> GnssBatching::flush() {
30 // TODO(b/34133439) implement
31 return Void();
32}
33
34Return<bool> GnssBatching::stop() {
35 // TODO(b/34133439) implement
36 return false;
37}
38
39Return<void> GnssBatching::cleanup() {
40 // TODO(b/34133439) implement
41 return Void();
42}
43
44} // namespace implementation
45} // namespace V1_0
46} // namespace gnss
47} // namespace hardware
48} // namespace android