mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-19 14:15:02 -04:00
18 lines
520 B
C++
18 lines
520 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "Dialog.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
class TetheringNotificationPopup : public gui::DialogConfirm
|
|
{
|
|
public:
|
|
TetheringNotificationPopup(app::ApplicationCommon *app, const std::string &name);
|
|
|
|
gui::status_bar::Configuration configureStatusBar(gui::status_bar::Configuration appConfiguration) override;
|
|
};
|
|
} // namespace gui
|