summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-02 18:42:17 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-02 18:42:17 (GMT)
commitf627a8a8b139a42568f67dc18679d92806e0ff4e (patch)
tree0ef345134ce775c6fca5ec35d2b6eecddbf3450e /src/uscxml/Factory.h
parentf19be97dea6fd8da994392d6fa7de5b3f0d9bf3e (diff)
downloaduscxml-f627a8a8b139a42568f67dc18679d92806e0ff4e.zip
uscxml-f627a8a8b139a42568f67dc18679d92806e0ff4e.tar.gz
uscxml-f627a8a8b139a42568f67dc18679d92806e0ff4e.tar.bz2
More bug-fixes for W3C tests
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index e257e45..65dc5fd 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -183,6 +183,7 @@ public:
protected:
boost::shared_ptr<IOProcessorImpl> _impl;
+ friend class Interpreter;
};
class InvokerImpl : public IOProcessorImpl {
@@ -234,8 +235,6 @@ public:
virtual void setEvent(const Event& event) = 0;
virtual Data getStringAsData(const std::string& content) = 0;
- virtual void registerIOProcessor(const std::string& name, const IOProcessor& ioprocessor) = 0;
-
// foreach
virtual uint32_t getLength(const std::string& expr) = 0;
virtual void pushContext() = 0;
@@ -296,10 +295,6 @@ public:
return _impl->popContext();
}
- virtual void registerIOProcessor(const std::string& name, const IOProcessor& ioprocessor) {
- _impl->registerIOProcessor(name, ioprocessor);
- }
-
virtual void eval(const std::string& expr) {
return _impl->eval(expr);
}