mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-27 07:21:00 -05:00
14 lines
255 B
C++
14 lines
255 B
C++
#include "EventsDB.hpp"
|
|
|
|
#include <module-vfs/vfs.hpp>
|
|
|
|
const char *EventsDB::dbName = USER_PATH("events.db");
|
|
|
|
EventsDB::EventsDB() : Database(dbName), events(this)
|
|
{
|
|
if (events.create() == false) {
|
|
return;
|
|
}
|
|
isInitialized_ = true;
|
|
}
|