25 lines
540 B
C++
25 lines
540 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2025 The LineageOS Project
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <aidl/vendor/lineage/touch/BnHighTouchPollingRate.h>
|
|
|
|
namespace aidl {
|
|
namespace vendor {
|
|
namespace lineage {
|
|
namespace touch {
|
|
|
|
class HighTouchPollingRate : public BnHighTouchPollingRate {
|
|
public:
|
|
ndk::ScopedAStatus getEnabled(bool* _aidl_return) override;
|
|
ndk::ScopedAStatus setEnabled(bool enabled) override;
|
|
};
|
|
|
|
} // namespace touch
|
|
} // namespace lineage
|
|
} // namespace vendor
|
|
} // namespace aidl
|