NonUiNotifier.h 298 B

123456789101112131415161718
  1. /*
  2. * Copyright (C) 2024 The LineageOS Project
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #include "SensorNotifier.h"
  8. class NonUiNotifier : public SensorNotifier {
  9. public:
  10. NonUiNotifier(sp<ISensorManager> manager);
  11. ~NonUiNotifier();
  12. protected:
  13. void notify();
  14. };