1 /* 2 * Copyright (C) 2022 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 #include "inputprocessor-impl/InputProcessor.h" 18 19 namespace aidl { 20 namespace android { 21 namespace hardware { 22 namespace input { 23 namespace processor { 24 25 using ::aidl::android::hardware::input::common::Classification; 26 using aidl::android::hardware::input::common::MotionEvent; 27 classify(const MotionEvent &,Classification * _aidl_return)28::ndk::ScopedAStatus InputProcessor::classify(const MotionEvent& /*in_event*/, 29 Classification* _aidl_return) { 30 *_aidl_return = Classification::NONE; 31 return ndk::ScopedAStatus::ok(); 32 } reset()33::ndk::ScopedAStatus InputProcessor::reset() { 34 return ndk::ScopedAStatus::ok(); 35 } resetDevice(int32_t)36::ndk::ScopedAStatus InputProcessor::resetDevice(int32_t /*in_deviceId*/) { 37 return ndk::ScopedAStatus::ok(); 38 } 39 40 } // namespace processor 41 } // namespace input 42 } // namespace hardware 43 } // namespace android 44 } // namespace aidl