Sarah Chin | b071f8a | 2019-11-07 10:43:16 -0800 | [diff] [blame^] | 1 | /* |
| 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 | |
| 19 | namespace android { |
| 20 | namespace hardware { |
| 21 | namespace radio { |
| 22 | namespace config { |
| 23 | namespace V1_3 { |
| 24 | namespace implementation { |
| 25 | |
| 26 | using namespace ::android::hardware::radio::V1_0; |
| 27 | using namespace ::android::hardware::radio::config::V1_0; |
| 28 | using namespace ::android::hardware::radio::config::V1_2; |
| 29 | |
| 30 | // Methods from ::android::hardware::radio::config::V1_0::IRadioConfigIndication follow. |
| 31 | Return<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. |
| 38 | Return<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 |