#include #include struct PduInfo { std::string pdu; int len; }; namespace SmsPdu { std::vector BcdEncode(std::string input); std::string HexformatVector(std::vector vec); std::vector Encode7to8bit(std::string str); std::vector CreateSmsPdu(std::string to, std::string message, bool allowMultipart); }