SensorNotifierExt.h 438 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2024 The LineageOS Project
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #include <android/frameworks/sensorservice/1.0/ISensorManager.h>
  8. #include "SensorNotifier.h"
  9. using android::sp;
  10. using android::frameworks::sensorservice::V1_0::ISensorManager;
  11. class SensorNotifierExt {
  12. public:
  13. SensorNotifierExt(sp<ISensorManager> manager);
  14. std::vector<std::unique_ptr<SensorNotifier>> mNotifiers;
  15. };