/* * * Copyright (c) 2023 Project CHIP Authors * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace chip { namespace app { namespace Clusters { namespace DishwasherAlarm { /** @brief * Defines methods for implementing application-specific logic for the DishwasherAlarm Cluster. */ class Delegate { public: /** * @brief * A notification that the Mask attribute will be changed. When this happens, some previously suppressed * alarms may need to be enabled, and previously enabled alarms may need to be suppressed. * @param[in] mask The new value of the Mask attribute. * @return The cluster will do this update if ModifyEnabledAlarmsCallback() returns true. * the cluster will not do this update if ModifyEnabledAlarmsCallback() returns false. */ virtual bool ModifyEnabledAlarmsCallback(const BitMask mask) = 0; /** * @brief * A notification that resets active alarms (if possible) * @param[in] alarms The value of reset alarms * @return The cluster will reset active alarms if ResetAlarmsCallback() returns true. * The cluster will not reset active alarms if ResetAlarmsCallback() returns false. */ virtual bool ResetAlarmsCallback(const BitMask alarms) = 0; Delegate(EndpointId endpoint) : mEndpoint(endpoint) {} Delegate() = default; virtual ~Delegate() = default; protected: EndpointId mEndpoint = 0; }; } // namespace DishwasherAlarm } // namespace Clusters } // namespace app } // namespace chip