Hridya Valsaraju | b5fbbfe | 2016-11-02 09:57:55 -0700 | [diff] [blame] | 1 | #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 | |
| 7 | using android::hardware::gnss::V1_0::IGnss; |
| 8 | using android::hardware::defaultPassthroughServiceImplementation; |
| 9 | |
| 10 | int main() { |
Chris Phoenix | ab5c1e1 | 2017-01-23 15:14:08 -0800 | [diff] [blame] | 11 | return defaultPassthroughServiceImplementation<IGnss>(); |
Hridya Valsaraju | b5fbbfe | 2016-11-02 09:57:55 -0700 | [diff] [blame] | 12 | } |