mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 15:07:17 -04:00
* [EGD-3158] added UT for CallogTable and CalllogRecord * [EGD-3343] added notifications db
22 lines
372 B
C++
22 lines
372 B
C++
#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;
|
|
};
|