blob: 51824ff419323f7d31d4c31707ff4c6c1e406127 [file] [log] [blame]
#include "SendResultONS.h"
#include <string>
namespace ons {
SendResultONS::SendResultONS() {}
SendResultONS::~SendResultONS() {}
void SendResultONS::setMessageId(const std::string& msgId) {
messageId = msgId;
}
const char* SendResultONS::getMessageId() const {
return messageId.c_str();
}
}