mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-23 06:24:09 -04:00
32 lines
554 B
C++
32 lines
554 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
/*
|
|
* AlarmsDB.hpp
|
|
*
|
|
* Created on: 15 lip 2019
|
|
* Author: kuba
|
|
*/
|
|
|
|
#pragma once
|
|
#include "Database/Database.hpp"
|
|
#include "../Tables/AlarmsTable.hpp"
|
|
#include "../Tables/ThreadsTable.hpp"
|
|
|
|
class AlarmsDB : public Database
|
|
{
|
|
public:
|
|
AlarmsDB();
|
|
~AlarmsDB();
|
|
|
|
AlarmsTable alarms;
|
|
|
|
static const char *GetDBName()
|
|
{
|
|
return dbName;
|
|
}
|
|
|
|
private:
|
|
static const char *dbName;
|
|
};
|