mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 23:50:31 -04:00
17 lines
396 B
C++
17 lines
396 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
|
|
|
|
#include "Image.hpp"
|
|
#include "StatusBarWidgetBase.hpp"
|
|
|
|
namespace gui::status_bar
|
|
{
|
|
class Lock : public StatusBarWidgetBase<Image>
|
|
{
|
|
public:
|
|
Lock(Item *parent, uint32_t x, uint32_t y);
|
|
};
|
|
} // namespace gui::status_bar
|