Files
MuditaOS/module-db/Databases/NotificationsDB.cpp
Alek Rudnik d5c8cb0c5b Egd 3343 add notifications database (#465)
* [EGD-3158] added UT for CallogTable and CalllogRecord

* [EGD-3343] added notifications db
2020-06-25 13:47:31 +02:00

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;
}