blob: 4e040c5945ca780b2ac65c1c3e3543c0404f6bcf [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() {
11 return defaultPassthroughServiceImplementation<IGnss>("gnss");
12}