summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/element/mmi/MMIEvents.cpp
blob: f1110b7532cbed247f5293a28c2005a68dc9bf5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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) {
}

}