mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-02 02:48:51 -05:00
* Switched to DB initialization at compile time * Organized and cleaned up db files directories(not finished completely) * Fixed DB related unit tests * Minor improvements to CMake * Small fixes for GCC12 build
16 lines
347 B
C++
16 lines
347 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <Database/Database.hpp>
|
|
#include <Tables/AlarmEventsTable.hpp>
|
|
|
|
class EventsDB : public Database
|
|
{
|
|
public:
|
|
explicit EventsDB(const char *name);
|
|
|
|
AlarmEventsTable alarmEvents;
|
|
};
|