summaryrefslogtreecommitdiff
path: root/core/LocApiBase.cpp
diff options
context:
space:
mode:
authorqctecmdr Service <qctecmdr@qualcomm.com>2019-02-19 11:57:34 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2019-02-19 11:57:34 -0800
commit8e120b1ed9b7c3f600f946828e29c6eb42286a31 (patch)
tree89c454d080b1b891c5944796ce5324ae9783fcd8 /core/LocApiBase.cpp
parent9a055d5208d598a841404ba5276c00e060f62fca (diff)
parent7445c50730a9f81de3926926bf74265653d6377a (diff)
downloadgps-8e120b1ed9b7c3f600f946828e29c6eb42286a31.tar.gz
Merge "New structures and handling of new data in the pipe"
Diffstat (limited to 'core/LocApiBase.cpp')
-rw-r--r--core/LocApiBase.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/LocApiBase.cpp b/core/LocApiBase.cpp
index 13b1c71..8fe84c2 100644
--- a/core/LocApiBase.cpp
+++ b/core/LocApiBase.cpp
@@ -380,6 +380,16 @@ void LocApiBase::reportDeleteAidingDataEvent(GnssAidingData& aidingData) {
TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportDeleteAidingDataEvent(aidingData));
}
+void LocApiBase::reportKlobucharIonoModel(GnssKlobucharIonoModel & ionoModel) {
+ // loop through adapters, and deliver to the first handling adapter.
+ TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportKlobucharIonoModelEvent(ionoModel));
+}
+
+void LocApiBase::reportGnssAdditionalSystemInfo(GnssAdditionalSystemInfo& additionalSystemInfo) {
+ // loop through adapters, and deliver to the first handling adapter.
+ TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportGnssAdditionalSystemInfoEvent(
+ additionalSystemInfo));
+}
void LocApiBase::reportSv(GnssSvNotification& svNotify)
{