mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-24 17:09:39 -04:00
25 lines
508 B
C++
25 lines
508 B
C++
// Copyright (c) 2017-2020, 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:
|
|
NotificationsDB();
|
|
virtual ~NotificationsDB() = default;
|
|
|
|
NotificationsTable notifications;
|
|
|
|
static const char *GetDBName()
|
|
{
|
|
return dbName;
|
|
}
|
|
|
|
private:
|
|
static const char *dbName;
|
|
};
|