blob: eb77a48ec1c2a354b0a4cbaff9f034fef1fff1ef [file] [log] [blame]
Sarah Chinb071f8a2019-11-07 10:43:16 -08001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.1 (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.1
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#include "RadioConfigIndication.h"
18
19namespace android {
20namespace hardware {
21namespace radio {
22namespace config {
23namespace V1_3 {
24namespace implementation {
25
26using namespace ::android::hardware::radio::V1_0;
27using namespace ::android::hardware::radio::config::V1_0;
28using namespace ::android::hardware::radio::config::V1_2;
29
30// Methods from ::android::hardware::radio::config::V1_0::IRadioConfigIndication follow.
31Return<void> RadioConfigIndication::simSlotsStatusChanged(
32 RadioIndicationType /* type */, const hidl_vec<V1_0::SimSlotStatus>& /* slotStatus */) {
33 // TODO implement
34 return Void();
35}
36
37// Methods from ::android::hardware::radio::config::V1_2::IRadioConfigIndication follow.
38Return<void> RadioConfigIndication::simSlotsStatusChanged_1_2(
39 RadioIndicationType /* type */, const hidl_vec<V1_2::SimSlotStatus>& /* slotStatus */) {
40 // TODO implement
41 return Void();
42}
43
44} // namespace implementation
45} // namespace V1_3
46} // namespace config
47} // namespace radio
48} // namespace hardware
49} // namespace android