Files
MuditaOS/module-services/service-cellular/SMSParser.hpp
Mateusz Piesta 44ef5ddd5f [MOS-807] Unpacking update package
* Added unpacking and validating of
update package
* Removed 'utils-bootconfig'
* Added 'tar' module
* Minor compilation issues fixed
2023-01-19 16:41:56 +01:00

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