mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-26 06:52:14 -05:00
31 lines
487 B
C++
31 lines
487 B
C++
|
|
/*
|
|
* @file SettingsDB.hpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 05.06.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
#pragma once
|
|
|
|
#include "Database/Database.hpp"
|
|
#include "../Tables/SettingsTable.hpp"
|
|
|
|
class SettingsDB : public Database
|
|
{
|
|
public:
|
|
SettingsDB();
|
|
~SettingsDB();
|
|
|
|
SettingsTable settings;
|
|
|
|
static const char *GetDBName()
|
|
{
|
|
return dbName;
|
|
}
|
|
|
|
private:
|
|
static const char *dbName;
|
|
};
|