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