summaryrefslogtreecommitdiffstats
path: root/src/bindings/swig/wrapped/WrappedIOProcessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bindings/swig/wrapped/WrappedIOProcessor.h')
-rw-r--r--src/bindings/swig/wrapped/WrappedIOProcessor.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/bindings/swig/wrapped/WrappedIOProcessor.h b/src/bindings/swig/wrapped/WrappedIOProcessor.h
index aa5f967..f1820a4 100644
--- a/src/bindings/swig/wrapped/WrappedIOProcessor.h
+++ b/src/bindings/swig/wrapped/WrappedIOProcessor.h
@@ -39,23 +39,23 @@ public:
WrappedIOProcessor(InterpreterImpl* interpreter);
virtual ~WrappedIOProcessor();
- virtual std::list<std::string> getNames() {
- return std::list<std::string>();
- };
+ virtual std::list<std::string> getNames() {
+ return std::list<std::string>();
+ };
- virtual std::shared_ptr<IOProcessorImpl> create(InterpreterImpl* interpreter) {
- std::shared_ptr<IOProcessorImpl> ioProc = std::shared_ptr<IOProcessorImpl>(new WrappedIOProcessor(interpreter));
- return ioProc;
- }
-
- virtual void eventFromSCXML(const std::string& target, const Event& event) {}
- virtual bool isValidTarget(const std::string& target) {
- return true;
- }
+ virtual std::shared_ptr<IOProcessorImpl> create(InterpreterImpl* interpreter) {
+ std::shared_ptr<IOProcessorImpl> ioProc = std::shared_ptr<IOProcessorImpl>(new WrappedIOProcessor(interpreter));
+ return ioProc;
+ }
- virtual Data getDataModelVariables() {
- return Data();
- }
+ virtual void eventFromSCXML(const std::string& target, const Event& event) {}
+ virtual bool isValidTarget(const std::string& target) {
+ return true;
+ }
+
+ virtual Data getDataModelVariables() {
+ return Data();
+ }
};
}