summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Message.h')
-rw-r--r--src/uscxml/Message.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h
index dda2279..ed481e2 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -72,7 +72,7 @@ public:
return ss.str();
}
- std::map<std::string, Data> getCompund() {
+ std::map<std::string, Data> getCompound() {
return compound;
}
void setCompound(const std::map<std::string, Data>& compound) {
@@ -187,6 +187,13 @@ public:
this->content = content;
}
+ std::string getXML() {
+ return xml;
+ }
+ void setXML(const std::string& xml) {
+ this->xml = xml;
+ }
+
std::string getSendId() {
return sendid;
}
@@ -270,6 +277,7 @@ protected:
#endif
std::string raw;
+ std::string xml;
std::string name;
Type type;
std::string origin;