~aleteoryx/muditaos

ref: e4dc40a7c2dadf51320cc6f0279f163b217806b6 muditaos/module-apps/application-notes/model/NotesListProvider.hpp -rw-r--r-- 532 bytes
e4dc40a7 — Bartosz Szostak [MOS-741] Fox crashes during the cellular frame processing 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 <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