mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 06:30:46 -04:00
18 lines
479 B
C++
18 lines
479 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "ListItemWithDescription.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
auto ListItemWithDescription::getDescription() const noexcept -> std::string
|
|
{
|
|
return description;
|
|
}
|
|
|
|
auto ListItemWithDescription::setDescription(std::string description) -> void
|
|
{
|
|
this->description = std::move(description);
|
|
}
|
|
} // namespace gui
|