mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-20 03:48:26 -05:00
16 lines
359 B
C++
16 lines
359 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <Database/Database.hpp>
|
|
#include <Tables/AlarmEventsTable.hpp>
|
|
|
|
class EventsDB : public Database
|
|
{
|
|
public:
|
|
explicit EventsDB(const char *name);
|
|
|
|
AlarmEventsTable alarmEvents;
|
|
};
|