summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
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);
}