mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-24 16:47:00 -04:00
* Added unpacking and validating of update package * Removed 'utils-bootconfig' * Added 'tar' module * Minor compilation issues fixed
17 lines
383 B
C++
17 lines
383 B
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include <utf8/UTF8.hpp>
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <ctime>
|
|
|
|
namespace SMSParser
|
|
{
|
|
bool parse(const std::string *smsData);
|
|
std::string getMessage();
|
|
UTF8 getNumber();
|
|
time_t getTime();
|
|
}; // namespace SMSParser
|