mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-24 13:58:00 -05:00
* [EGD-3158] added UT for CallogTable and CalllogRecord * [EGD-3343] added notifications db
13 lines
295 B
C++
13 lines
295 B
C++
#include "NotificationsDB.hpp"
|
|
|
|
#include <module-vfs/vfs.hpp>
|
|
|
|
const char *NotificationsDB::dbName = USER_PATH("notifications.db");
|
|
|
|
NotificationsDB::NotificationsDB() : Database(dbName), notifications(this)
|
|
{
|
|
if (notifications.Create() == false)
|
|
return;
|
|
isInitialized = true;
|
|
}
|