mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-23 05:22:45 -05:00
25 lines
598 B
C++
25 lines
598 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 <windows/DialogMetadata.hpp>
|
|
#include <memory>
|
|
|
|
namespace gui
|
|
{
|
|
class DialogMetadataMessage : public gui::SwitchData
|
|
{
|
|
DialogMetadata metadata;
|
|
|
|
public:
|
|
explicit DialogMetadataMessage(DialogMetadata metadata) : metadata(std::move(metadata))
|
|
{}
|
|
[[nodiscard]] const DialogMetadata &get() const
|
|
{
|
|
return metadata;
|
|
}
|
|
};
|
|
} // namespace gui
|