summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.h')
-rw-r--r--src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.h b/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.h
index 8acbac0..e30bdb2 100644
--- a/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.h
+++ b/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.h
@@ -37,10 +37,10 @@ public:
virtual ~CometIOProcessor();
virtual boost::shared_ptr<IOProcessorImpl> create(uscxml::InterpreterImpl* interpreter);
- virtual std::set<std::string> getNames() {
- std::set<std::string> names;
- names.insert("comet");
- names.insert("http://www.w3.org/TR/scxml/#CometEventProcessor");
+ virtual std::list<std::string> getNames() {
+ std::list<std::string> names;
+ names.push_back("comet");
+ names.push_back("http://www.w3.org/TR/scxml/#CometEventProcessor");
return names;
}