blob: 54e5ae02bee937434750e22c756b80b7d67c2f77 [file] [log] [blame]
Kevin Rocarddf9b4202018-05-10 19:56:08 -07001/*
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_H
18#define ANDROID_HARDWARE_VERSION_UTILS_H
19
20#include <android/hardware/audio/2.0/types.h>
21#include <hidl/HidlSupport.h>
22
23using ::android::hardware::audio::V2_0::ParameterValue;
24using ::android::hardware::audio::V2_0::Result;
25using ::android::hardware::Return;
26using ::android::hardware::hidl_vec;
27using ::android::hardware::hidl_string;
28
29namespace android {
30namespace V2_0 {
31namespace utils {
32
33template <class T, class Callback>
34Return<void> getParameters(T& object, hidl_vec<ParameterValue> /*context*/,
35 hidl_vec<hidl_string> keys, Callback callback) {
36 return object->getParameters(keys, callback);
37}
38
39template <class T>
40Return<Result> setParameters(T& object, hidl_vec<ParameterValue> /*context*/,
41 hidl_vec<ParameterValue> keys) {
42 return object->setParameters(keys);
43}
44
45} // namespace utils
46} // namespace V2_0
47} // namespace android
48
49#endif // ANDROID_HARDWARE_VERSION_UTILS_H