mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-28 02:07:08 -04:00
22 lines
331 B
C++
22 lines
331 B
C++
#pragma once
|
|
|
|
#include "Database/Database.hpp"
|
|
#include "module-db/Tables/EventsTable.hpp"
|
|
|
|
class EventsDB : public Database
|
|
{
|
|
public:
|
|
EventsDB();
|
|
~EventsDB() override = default;
|
|
|
|
EventsTable events;
|
|
|
|
static const char *GetDBName()
|
|
{
|
|
return dbName;
|
|
}
|
|
|
|
private:
|
|
static const char *dbName;
|
|
};
|