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
21 lines
494 B
C++
21 lines
494 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 "module-db/Tables/SMSTable.hpp"
|
|
#include "module-db/Tables/ThreadsTable.hpp"
|
|
#include "module-db/Tables/SMSTemplateTable.hpp"
|
|
|
|
class SmsDB : public Database
|
|
{
|
|
public:
|
|
SmsDB(const char *name);
|
|
~SmsDB() = default;
|
|
|
|
SMSTable sms;
|
|
ThreadsTable threads;
|
|
SMSTemplateTable templates;
|
|
};
|