mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-02 02:48:51 -05:00
* Switched to DB initialization at compile time * Organized and cleaned up db files directories(not finished completely) * Fixed DB related unit tests * Minor improvements to CMake * Small fixes for GCC12 build
17 lines
419 B
C++
17 lines
419 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 "Database/Database.hpp"
|
|
#include "module-db/Tables/NotificationsTable.hpp"
|
|
|
|
class NotificationsDB : public Database
|
|
{
|
|
public:
|
|
explicit NotificationsDB(const char *name);
|
|
virtual ~NotificationsDB() = default;
|
|
|
|
NotificationsTable notifications;
|
|
};
|