mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 14:40:57 -04:00
Stack plus minimum tests added Updated to master Removed useless or adressed TODOS Constants name applied Renamed searchModel to searchRequestModel Review applied We should remove legacy window names Bell names fixes
20 lines
395 B
C++
20 lines
395 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
class SearchRequestModel
|
|
{
|
|
bool searchRequested = false;
|
|
|
|
public:
|
|
bool requestedSearch() const noexcept
|
|
{
|
|
return searchRequested;
|
|
}
|
|
void setRequested(bool val) noexcept
|
|
{
|
|
searchRequested = val;
|
|
}
|
|
};
|