mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 07:28:21 -04:00
34 lines
556 B
C++
34 lines
556 B
C++
|
|
/*
|
|
* @file SettingsDB.hpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 05.06.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
#ifndef PUREPHONE_SETTINGSDB_HPP
|
|
#define PUREPHONE_SETTINGSDB_HPP
|
|
|
|
#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;
|
|
};
|
|
|
|
|
|
#endif //PUREPHONE_SETTINGSDB_HPP
|