summaryrefslogtreecommitdiffstats
path: root/group.cpp
blob: 8ed2ab041174879e6c58227b252e3a34dcec0671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <sdbusplus/message.hpp>
#include "group.hpp"
namespace phosphor
{
namespace led
{

/** @brief Overloaded Property Setter function */
bool Group::asserted(bool value)
{
    // Group management is handled by Manager
    auto result = manager.setGroupState(path, value);

    // Set the base class's asserted to 'true' since the getter
    // operation is handled there.
    return sdbusplus::xyz::openbmc_project::Led::server::
                      Group::asserted(result);
}

} // namespace led
} // namespace phosphor
OpenPOWER on IntegriCloud