// 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 #include namespace app::notes { class NoteSwitchData : public gui::SwitchData { public: explicit NoteSwitchData(std::shared_ptr record); std::shared_ptr getRecord() noexcept; private: std::shared_ptr record = nullptr; }; } // namespace app::notes