blob: cadea2bdaca9c4c3bfc6c2c2f9d994f35e44ad3f [file] [log] [blame]
Paul Keith5b3bd862019-01-08 23:45:03 +01001/*
2 * Copyright (C) 2019 The LineageOS 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#include "TouchscreenGesture.h"
18
19namespace vendor {
20namespace lineage {
21namespace touch {
22namespace V1_0 {
23namespace implementation {
24
25// Methods from ::vendor::lineage::touch::V1_0::ITouchscreenGesture follow.
26Return<void> TouchscreenGesture::getSupportedGestures(getSupportedGestures_cb _hidl_cb) {
27 // TODO implement
28 return Void();
29}
30
31Return<void> TouchscreenGesture::setGestureEnabled(const ::vendor::lineage::touch::V1_0::Gesture& gesture, bool enabled) {
32 // TODO implement
33 return Void();
34}
35
36
37// Methods from ::android::hidl::base::V1_0::IBase follow.
38
39//ITouchscreenGesture* HIDL_FETCH_ITouchscreenGesture(const char* /* name */) {
40 //return new TouchscreenGesture();
41//}
42//
43} // namespace implementation
44} // namespace V1_0
45} // namespace touch
46} // namespace lineage
47} // namespace vendor