summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/element/mmi/MMIEvents.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-06-10 22:47:14 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-06-10 22:47:14 (GMT)
commit6f56474450b7c54f2c95b5dea6a7a42623141649 (patch)
tree420c52085d8cf778360c09baf9722b21d01259da /src/uscxml/plugins/element/mmi/MMIEvents.cpp
parenta154682fc1b25581742d38dd5fe9aa06ede167b7 (diff)
downloaduscxml-6f56474450b7c54f2c95b5dea6a7a42623141649.zip
uscxml-6f56474450b7c54f2c95b5dea6a7a42623141649.tar.gz
uscxml-6f56474450b7c54f2c95b5dea6a7a42623141649.tar.bz2
W3C MMI Architecture framework
Diffstat (limited to 'src/uscxml/plugins/element/mmi/MMIEvents.cpp')
-rw-r--r--src/uscxml/plugins/element/mmi/MMIEvents.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/uscxml/plugins/element/mmi/MMIEvents.cpp b/src/uscxml/plugins/element/mmi/MMIEvents.cpp
new file mode 100644
index 0000000..5d688ff
--- /dev/null
+++ b/src/uscxml/plugins/element/mmi/MMIEvents.cpp
@@ -0,0 +1,42 @@
+#include "MMIEvents.h"
+
+namespace uscxml {
+
+ void PrepareRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void StartRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void PauseRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void ResumeRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void CancelRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void ClearContextRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void StatusRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void NewContextResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void PrepareResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void StartResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void PauseResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void ResumeResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void CancelResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void ClearContextResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void StatusResponseElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void DoneNotificationElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void NewContextRequestElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+ void ExtensionNotificationElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+ }
+
+} \ No newline at end of file