blob: 48e81dade35c73d678df94f3b3259c317e3a60e4 [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 "RadioConfigResponse.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_1;
29using namespace ::android::hardware::radio::config::V1_2;
30
31// Methods from ::android::hardware::radio::config::V1_0::IRadioConfigResponse follow.
32Return<void> RadioConfigResponse::getSimSlotsStatusResponse(
33 const RadioResponseInfo& /* info */,
34 const hidl_vec<V1_0::SimSlotStatus>& /* slotStatus */) {
35 // TODO implement
36 return Void();
37}
38
39Return<void> RadioConfigResponse::setSimSlotsMappingResponse(const RadioResponseInfo& /* info */) {
40 // TODO implement
41 return Void();
42}
43
44// Methods from ::android::hardware::radio::config::V1_1::IRadioConfigResponse follow.
45Return<void> RadioConfigResponse::getPhoneCapabilityResponse(
46 const RadioResponseInfo& /* info */, const V1_1::PhoneCapability& /* phoneCapability */) {
47 // TODO implement
48 return Void();
49}
50
51Return<void> RadioConfigResponse::setPreferredDataModemResponse(
52 const RadioResponseInfo& /* info */) {
53 // TODO implement
54 return Void();
55}
56
57Return<void> RadioConfigResponse::setModemsConfigResponse(const RadioResponseInfo& /* info */) {
58 // TODO implement
59 return Void();
60}
61
62Return<void> RadioConfigResponse::getModemsConfigResponse(
63 const RadioResponseInfo& /* info */, const V1_1::ModemsConfig& /* modemsConfig */) {
64 // TODO implement
65 return Void();
66}
67
68// Methods from ::android::hardware::radio::config::V1_2::IRadioConfigResponse follow.
69Return<void> RadioConfigResponse::getSimSlotsStatusResponse_1_2(
70 const RadioResponseInfo& /* info */,
71 const hidl_vec<V1_2::SimSlotStatus>& /* slotStatus */) {
72 // TODO implement
73 return Void();
74}
75
76} // namespace implementation
77} // namespace V1_3
78} // namespace config
79} // namespace radio
80} // namespace hardware
81} // namespace android