blob: e7fde84058ca8ffa664e96b3108971fe0857ab50 [file] [log] [blame]
Brian Duddiea7bf0d22020-02-14 14:24:39 -08001/*
2 * Copyright (C) 2020 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#include "Contexthub.h"
17
18#include <vector>
19
20namespace android {
21namespace hardware {
22namespace contexthub {
23namespace V1_1 {
24namespace implementation {
25
Brian Duddiea7bf0d22020-02-14 14:24:39 -080026Return<void> Contexthub::onSettingChanged(Setting /*setting*/, SettingValue /*newValue*/) {
27 return Void();
28}
29
30} // namespace implementation
31} // namespace V1_1
32} // namespace contexthub
33} // namespace hardware
34} // namespace android