mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-25 14:29:22 -05:00
36 lines
420 B
C++
36 lines
420 B
C++
|
|
/*
|
|
* @file SMSRecord.cpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 29.05.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
#include "SMSRecord.hpp"
|
|
|
|
SMSRecord::SMSRecord():
|
|
Record() {
|
|
|
|
}
|
|
|
|
SMSRecord::~SMSRecord() {
|
|
|
|
}
|
|
|
|
bool SMSRecord::Add() {
|
|
|
|
auto db = std::make_unique<SmsDB>();
|
|
|
|
//db->threads.Add()
|
|
}
|
|
|
|
bool SMSRecord::Remove() {
|
|
|
|
}
|
|
|
|
bool SMSRecord::Update() {
|
|
|
|
} |