mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-13 08:18:13 -05:00
18 lines
544 B
C++
18 lines
544 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 <apps-common/DatabaseModel.hpp>
|
|
#include <module-db/Interface/NotesRecord.hpp>
|
|
#include <apps-common/ApplicationCommon.hpp>
|
|
|
|
namespace app::notes
|
|
{
|
|
class NotesListItemProvider : public app::DatabaseModel<NotesRecord>, public gui::ListItemProvider
|
|
{
|
|
public:
|
|
explicit NotesListItemProvider(app::ApplicationCommon *app);
|
|
};
|
|
} // namespace app::notes
|