mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-19 14:15:02 -04:00
20 lines
452 B
C++
20 lines
452 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 <SwitchData.hpp>
|
|
#include <json11.hpp>
|
|
#include <utility>
|
|
|
|
namespace app::onBoarding
|
|
{
|
|
|
|
class OnBoardingSwitchData : public gui::SwitchData
|
|
{
|
|
public:
|
|
OnBoardingSwitchData() : SwitchData("onBoardingSwitchData")
|
|
{}
|
|
};
|
|
} // namespace app::onBoarding
|