summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/EventHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/EventHandler.h')
-rw-r--r--src/uscxml/plugins/EventHandler.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/uscxml/plugins/EventHandler.h b/src/uscxml/plugins/EventHandler.h
index 7b38575..4078cfe 100644
--- a/src/uscxml/plugins/EventHandler.h
+++ b/src/uscxml/plugins/EventHandler.h
@@ -49,7 +49,10 @@ public:
void setType(const std::string& type) {
_type = type;
}
-
+ std::string getType() {
+ return _type;
+ }
+
void setElement(const Arabica::DOM::Element<std::string>& element) {
_element = element;
}
@@ -101,9 +104,13 @@ public:
void setInvokeId(const std::string& invokeId) {
_impl->setInvokeId(invokeId);
}
+
void setType(const std::string& type) {
_impl->setType(type);
}
+ std::string getType() {
+ return _impl->getType();
+ }
void setElement(const Arabica::DOM::Element<std::string>& element) {
_impl->setElement(element);