blob: 5a8acc106f8620ad4012f66858d0389ef4f24de0 [file] [log] [blame]
Hridya Valsarajub5fbbfe2016-11-02 09:57:55 -07001#define LOG_TAG "android.hardware.gnss@1.0-service"
2
3#include <android/hardware/gnss/1.0/IGnss.h>
4
5#include <hidl/LegacySupport.h>
6
7using android::hardware::gnss::V1_0::IGnss;
8using android::hardware::defaultPassthroughServiceImplementation;
9
10int main() {
Chris Phoenixab5c1e12017-01-23 15:14:08 -080011 return defaultPassthroughServiceImplementation<IGnss>();
Hridya Valsarajub5fbbfe2016-11-02 09:57:55 -070012}