blob: 1d48a13e3748df0a0d31425bc876b7d42b997c90 [file] [log] [blame]
Sarah Chin83e3ca82019-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 "RadioConfigResponse.h"
18
19namespace android {
20namespace hardware {
21namespace radio {
22namespace config {
23namespace V1_3 {
24namespace implementation {
25
Sarah Chin83e3ca82019-11-07 10:43:16 -080026// Methods from ::android::hardware::radio::config::V1_0::IRadioConfigResponse follow.
27Return<void> RadioConfigResponse::getSimSlotsStatusResponse(
28 const RadioResponseInfo& /* info */,
29 const hidl_vec<V1_0::SimSlotStatus>& /* slotStatus */) {
30 // TODO implement
31 return Void();
32}
33
34Return<void> RadioConfigResponse::setSimSlotsMappingResponse(const RadioResponseInfo& /* info */) {
35 // TODO implement
36 return Void();
37}
38
39// Methods from ::android::hardware::radio::config::V1_1::IRadioConfigResponse follow.
40Return<void> RadioConfigResponse::getPhoneCapabilityResponse(
41 const RadioResponseInfo& /* info */, const V1_1::PhoneCapability& /* phoneCapability */) {
42 // TODO implement
43 return Void();
44}
45
46Return<void> RadioConfigResponse::setPreferredDataModemResponse(
47 const RadioResponseInfo& /* info */) {
48 // TODO implement
49 return Void();
50}
51
52Return<void> RadioConfigResponse::setModemsConfigResponse(const RadioResponseInfo& /* info */) {
53 // TODO implement
54 return Void();
55}
56
57Return<void> RadioConfigResponse::getModemsConfigResponse(
58 const RadioResponseInfo& /* info */, const V1_1::ModemsConfig& /* modemsConfig */) {
59 // TODO implement
60 return Void();
61}
62
63// Methods from ::android::hardware::radio::config::V1_2::IRadioConfigResponse follow.
64Return<void> RadioConfigResponse::getSimSlotsStatusResponse_1_2(
65 const RadioResponseInfo& /* info */,
66 const hidl_vec<V1_2::SimSlotStatus>& /* slotStatus */) {
67 // TODO implement
68 return Void();
69}
70
Sarah Chin322c4cc2019-11-20 11:25:02 -080071// Methods from ::android::hardware::radio::config::V1_3::IRadioConfigResponse follow.
72Return<void> RadioConfigResponse::getPhoneCapabilityResponse_1_3(
73 const RadioResponseInfo& /* info */, const V1_3::PhoneCapability& /* phoneCapability */) {
74 // TODO implement
75 return Void();
76}
77
Sarah Chin83e3ca82019-11-07 10:43:16 -080078} // namespace implementation
79} // namespace V1_3
80} // namespace config
81} // namespace radio
82} // namespace hardware
83} // namespace android