mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 00:19:31 -04:00
36 lines
570 B
C++
36 lines
570 B
C++
|
|
/*
|
|
* @file SmsDB.hpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 28.05.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
#ifndef PUREPHONE_SMSDB_HPP
|
|
#define PUREPHONE_SMSDB_HPP
|
|
|
|
#include "Database/Database.hpp"
|
|
#include "../Tables/SMSTable.hpp"
|
|
#include "../Tables/ThreadsTable.hpp"
|
|
|
|
class SmsDB : public Database {
|
|
public:
|
|
SmsDB();
|
|
~SmsDB();
|
|
|
|
SMSTable sms;
|
|
ThreadsTable threads;
|
|
|
|
static const char* GetDBName(){return dbName;}
|
|
|
|
private:
|
|
|
|
static const char *dbName;
|
|
};
|
|
|
|
|
|
#endif //PUREPHONE_SMSDB_HPP
|