blob: 1246c2e9495fcc0437f69cb005d1d6aa2a11f05f [file] [log] [blame]
Kevin Rocardb9cfbf12018-02-23 19:11:06 -08001/*
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
23using ::android::hardware::audio::V4_0::ParameterValue;
24using ::android::hardware::audio::V4_0::Result;
25using ::android::hardware::Return;
26using ::android::hardware::hidl_vec;
27using ::android::hardware::hidl_string;
28
29namespace android {
30namespace V4_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(context, 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(context, keys);
43}
44
45} // namespace utils
46} // namespace V4_0
47} // namespace android
48
49#endif // ANDROID_HARDWARE_VERSION_UTILS_4_0_H