#include "NotificationsDB.hpp" #include const char *NotificationsDB::dbName = USER_PATH("notifications.db"); NotificationsDB::NotificationsDB() : Database(dbName), notifications(this) { if (notifications.Create() == false) return; isInitialized = true; }