mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-24 17:09:39 -04:00
* [EGD-4264] VFS directory reordering Currently VFS uses flat directory structure for disc manager I need more sofisticated directory layout * [EGD-4264] Remove redundant -Wno * [EGD-4261] New purefs API * [EGD-4264] Unittest fixes * [EGD-4264] Directory relativity * [EGD-4264] Relative path fixes * [EGD-4264] Fix RT1051 compile errors Co-authored-by: Lucjan Bryndza <lucjan.bryndza@mudita.com>
18 lines
369 B
C++
18 lines
369 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.cpp
|
|
*
|
|
* Created on: 15 lip 2019
|
|
* Author: kuba
|
|
*/
|
|
|
|
#include <vfs.hpp>
|
|
#include "AlarmsDB.hpp"
|
|
|
|
const char *AlarmsDB::dbName = USER_PATH("alarms.db");
|
|
|
|
AlarmsDB::AlarmsDB() : Database(dbName), alarms(this)
|
|
{}
|