1 /*
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_VERSION_UTILS_4_0_H
18 #define ANDROID_HARDWARE_VERSION_UTILS_4_0_H
19
20 #include <android/hardware/audio/4.0/types.h>
21 #include <hidl/HidlSupport.h>
22
23 using ::android::hardware::audio::V4_0::ParameterValue;
24 using ::android::hardware::audio::V4_0::Result;
25 using ::android::hardware::Return;
26 using ::android::hardware::hidl_vec;
27 using ::android::hardware::hidl_string;
28
29 namespace android {
30 namespace V4_0 {
31 namespace utils {
32
33 template <class T, class Callback>
getParameters(T & object,hidl_vec<ParameterValue> context,hidl_vec<hidl_string> keys,Callback callback)34 Return<void> getParameters(T& object, hidl_vec<ParameterValue> context,
35 hidl_vec<hidl_string> keys, Callback callback) {
36 return object->getParameters(context, keys, callback);
37 }
38
39 template <class T>
setParameters(T & object,hidl_vec<ParameterValue> context,hidl_vec<ParameterValue> keys)40 Return<Result> setParameters(T& object, hidl_vec<ParameterValue> context,
41 hidl_vec<ParameterValue> keys) {
42 return object->setParameters(context, keys);
43 }
44
45 } // namespace utils
46 } // namespace V4_0
47 } // namespace android
48
49 #endif // ANDROID_HARDWARE_VERSION_UTILS_4_0_H
50