blob: 6d149fa85c3a962c356322d71bd92376608cc321 [file] [log] [blame]
Yu-Han Yanga2f77322018-03-06 10:12:55 -08001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef android_hardware_gnss_V1_1_GnssDebug_H_
18#define android_hardware_gnss_V1_1_GnssDebug_H_
19
20#include <android/hardware/gnss/1.0/IGnssDebug.h>
21#include <hardware/gps.h>
22#include <hidl/Status.h>
23
24namespace android {
25namespace hardware {
26namespace gnss {
27namespace V1_1 {
28namespace implementation {
29
30using ::android::sp;
31using ::android::hardware::hidl_string;
32using ::android::hardware::hidl_vec;
33using ::android::hardware::Return;
34using ::android::hardware::Void;
35using V1_0::IGnssDebug;
36
37/* Interface for GNSS Debug support. */
38struct GnssDebug : public IGnssDebug {
39 /*
40 * Methods from ::android::hardware::gnss::V1_0::IGnssDebug follow.
41 * These declarations were generated from IGnssDebug.hal.
42 */
43 Return<void> getDebugData(V1_0::IGnssDebug::getDebugData_cb _hidl_cb) override;
44};
45
46} // namespace implementation
47} // namespace V1_1
48} // namespace gnss
49} // namespace hardware
50} // namespace android
51
52#endif // android_hardware_gnss_V1_1_GnssDebug_H_