mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-19 14:15:02 -04:00
19 lines
502 B
C++
19 lines
502 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 <string>
|
|
#include "TetheringNotificationPopup.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
class TetheringMenuPopup : public TetheringNotificationPopup
|
|
{
|
|
public:
|
|
TetheringMenuPopup(app::ApplicationCommon *app, const std::string &name);
|
|
|
|
void onBeforeShow(ShowMode mode, SwitchData *data) override;
|
|
};
|
|
} // namespace gui
|