/* * Copyright (C) 2024 The LineageOS Project * * SPDX-License-Identifier: Apache-2.0 */ #pragma once #include #include "SensorNotifier.h" class LightNotifier : public SensorNotifier { public: LightNotifier(sp manager); ~LightNotifier(); protected: void notify(); private: std::vector mLightSensorsPrimary; std::vector mLightSensorsSecondary; };