summaryrefslogtreecommitdiffstats
path: root/src/bindings/swig/uscxml_ignores.i
blob: 4146a35d4c06f1c0c41fedd90add3956a587c863 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
%ignore uscxml::NumAttr;
%ignore uscxml::SCXMLParser;
%ignore uscxml::InterpreterImpl;
%ignore uscxml::BlobImpl;
%ignore uscxml::StateTransitionMonitor;
%ignore uscxml::ActionLanguage;

#if 0
%ignore uscxml::EventHandlerImpl;
#endif

%ignore uscxml::EventHandlerImpl::setInterpreter(InterpreterImpl*);
%ignore uscxml::EventHandlerImpl::getInterpreter;
%ignore uscxml::EventHandlerImpl::getElement;
%ignore uscxml::EventHandlerImpl::runOnMainThread;

%ignore uscxml::EventHandler::EventHandler(const std::shared_ptr<EventHandlerImpl>);
%ignore uscxml::EventHandler::EventHandler(EventHandler&);
%ignore uscxml::EventHandler::setInterpreter(InterpreterImpl*);
%ignore uscxml::EventHandler::getInterpreter;
%ignore uscxml::EventHandler::getElement;
%ignore uscxml::EventHandler::runOnMainThread;

// interpreter

%ignore uscxml::Interpreter::Interpreter(const std::shared_ptr<InterpreterImpl>);
%ignore uscxml::Interpreter::Interpreter(const Interpreter&);
%ignore uscxml::Interpreter::fromDocument;
%ignore uscxml::Interpreter::fromElement;
%ignore uscxml::Interpreter::fromClone;
%ignore uscxml::Interpreter::getImpl();

%ignore uscxml::InterpreterOptions;

// InterpreterIssues
%ignore uscxml::InterpreterIssue::node;


// InterpreterMonitor

%ignore uscxml::InterpreterMonitor::beforeExitingState(const XERCESC_NS::DOMElement*);
%ignore uscxml::InterpreterMonitor::afterExitingState(const XERCESC_NS::DOMElement*);
%ignore uscxml::InterpreterMonitor::beforeEnteringState(const XERCESC_NS::DOMElement*);
%ignore uscxml::InterpreterMonitor::afterEnteringState(const XERCESC_NS::DOMElement*);

%ignore uscxml::InterpreterMonitor::beforeUninvoking(const XERCESC_NS::DOMElement*, const std::string&);
%ignore uscxml::InterpreterMonitor::afterUninvoking(const XERCESC_NS::DOMElement*, const std::string&);
%ignore uscxml::InterpreterMonitor::beforeInvoking(const XERCESC_NS::DOMElement*, const std::string&);
%ignore uscxml::InterpreterMonitor::afterInvoking(const XERCESC_NS::DOMElement*, const std::string&);

%ignore uscxml::InterpreterMonitor::beforeTakingTransition(const XERCESC_NS::DOMElement*);
%ignore uscxml::InterpreterMonitor::afterTakingTransition(const XERCESC_NS::DOMElement*);

%ignore uscxml::InterpreterMonitor::beforeExecutingContent(const XERCESC_NS::DOMElement*);
%ignore uscxml::InterpreterMonitor::afterExecutingContent(const XERCESC_NS::DOMElement*);


%ignore uscxml::InterpreterOptions::fromCmdLine(int, char**);
%ignore uscxml::InterpreterOptions::additionalParameters;
%ignore uscxml::InterpreterOptions::interpreters;

// Invoker

%ignore uscxml::Invoker::Invoker(const std::shared_ptr<InvokerImpl>);
%ignore uscxml::Invoker::setInterpreter(InterpreterImpl*);
%ignore uscxml::Invoker::getInterpreter;

%ignore uscxml::InvokerImpl::create(InterpreterImpl*);
%ignore uscxml::InvokerImpl::setInterpreter(InterpreterImpl*);
%ignore uscxml::InvokerImpl::getInterpreter;


// DataModel

%ignore uscxml::DataModel::DataModel(const std::shared_ptr<DataModelImpl>);
%ignore uscxml::DataModel::DataModel(const DataModel&);


%ignore uscxml::WrappedDataModel::create(DataModelCallbacks*);
%ignore uscxml::DataModelExtension::dm;

// Executable Content

%ignore uscxml::ExecutableContent::ExecutableContent(const std::shared_ptr<ExecutableContentImpl>);
%ignore uscxml::ExecutableContent::ExecutableContent(const ExecutableContent&);
%ignore uscxml::ExecutableContent::setInterpreter(InterpreterImpl*);
%ignore uscxml::ExecutableContent::getInterpreter;
%ignore uscxml::ExecutableContent::enterElement(const XERCESC_NS::DOMElement*);
%ignore uscxml::ExecutableContent::exitElement(const XERCESC_NS::DOMElement*s);

%ignore uscxml::ExecutableContentImpl::create(InterpreterImpl*);
%ignore uscxml::ExecutableContentImpl::enterElement(const XERCESC_NS::DOMElement*);
%ignore uscxml::ExecutableContentImpl::exitElement(const XERCESC_NS::DOMElement*);
%ignore uscxml::ExecutableContentImpl::setInterpreter(InterpreterImpl*);
%ignore uscxml::ExecutableContentImpl::getInterpreter;

%ignore uscxml::WrappedExecutableContent::create(InterpreterImpl*);
%ignore uscxml::WrappedExecutableContent::enterElement(const XERCESC_NS::DOMElement*);
%ignore uscxml::WrappedExecutableContent::exitElement(const XERCESC_NS::DOMElement*);


// IOProcessor

%ignore uscxml::IOProcessorImpl::create(InterpreterImpl*);

%ignore uscxml::IOProcessor::IOProcessor(const std::shared_ptr<IOProcessorImpl>);
%ignore uscxml::IOProcessor::IOProcessor(const IOProcessor&);

%ignore uscxml::WrappedIOProcessor::create(InterpreterImpl*);


// Factory

%ignore uscxml::Factory::createDataModel;
%ignore uscxml::Factory::createIOProcessor;
%ignore uscxml::Factory::createInvoker;
%ignore uscxml::Factory::createExecutableContent;
%ignore uscxml::Factory::getIOProcessors;

// Event

%ignore uscxml::Event::getParams();
%ignore uscxml::Event::getParam;
%ignore uscxml::Event::setParams;

// HTTPServer

%ignore uscxml::HTTPServer::wsSend;
%ignore uscxml::HTTPServer::wsBroadcast;
%ignore uscxml::HTTPServer::reply;


// Data

%ignore uscxml::Data::toDocument;
%ignore uscxml::Data::Data(const XERCESC_NS::DOMElement*);
%ignore uscxml::Data::Data(const char* data, size_t size, const std::string& mimeType, bool adopt);
%ignore uscxml::Data::Data(const char* data, size_t size, const std::string& mimeType);

// Blob

%ignore uscxml::Blob::Blob(size_t size);
%ignore uscxml::Blob::Blob(const char* data, size_t size, const std::string& mimeType, bool adopt);
%ignore uscxml::Blob::Blob(const std::shared_ptr<BlobImpl>);


%ignore operator!=;
%ignore operator<;
%ignore operator=;
%ignore operator[];
%ignore operator std::list<Data>;
%ignore operator std::string;
%ignore operator std::map<std::string,Data>;
%ignore operator<<;