summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/graphics
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-06 17:58:03 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-06 17:58:03 (GMT)
commite5a393584b030ac90c4e7abf65063ef72b910555 (patch)
treebfab1a3c3e4a1c8fc5dc3d27bd1b4f0044901293 /src/uscxml/plugins/invoker/graphics
parent4ecca617e628e94845dafafbdee46ce57f7bc843 (diff)
downloaduscxml-e5a393584b030ac90c4e7abf65063ef72b910555.zip
uscxml-e5a393584b030ac90c4e7abf65063ef72b910555.tar.gz
uscxml-e5a393584b030ac90c4e7abf65063ef72b910555.tar.bz2
Changed getNames signature from set to list
Diffstat (limited to 'src/uscxml/plugins/invoker/graphics')
-rw-r--r--src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.h10
-rw-r--r--src/uscxml/plugins/invoker/graphics/openscenegraph/converter/OSGConverter.h12
2 files changed, 11 insertions, 11 deletions
diff --git a/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.h b/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.h
index cda0ad3..af06e23 100644
--- a/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.h
+++ b/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.h
@@ -44,11 +44,11 @@ public:
virtual ~OSGInvoker();
virtual boost::shared_ptr<InvokerImpl> create(InterpreterImpl* interpreter);
- virtual std::set<std::string> getNames() {
- std::set<std::string> names;
- names.insert("3d");
- names.insert("scenegraph");
- names.insert("http://uscxml.tk.informatik.tu-darmstadt.de/#3d");
+ virtual std::list<std::string> getNames() {
+ std::list<std::string> names;
+ names.push_back("3d");
+ names.push_back("scenegraph");
+ names.push_back("http://uscxml.tk.informatik.tu-darmstadt.de/#3d");
return names;
}
diff --git a/src/uscxml/plugins/invoker/graphics/openscenegraph/converter/OSGConverter.h b/src/uscxml/plugins/invoker/graphics/openscenegraph/converter/OSGConverter.h
index a632a19..10e6fc9 100644
--- a/src/uscxml/plugins/invoker/graphics/openscenegraph/converter/OSGConverter.h
+++ b/src/uscxml/plugins/invoker/graphics/openscenegraph/converter/OSGConverter.h
@@ -36,12 +36,12 @@ public:
virtual ~OSGConverter();
virtual boost::shared_ptr<InvokerImpl> create(InterpreterImpl* interpreter);
- virtual std::set<std::string> getNames() {
- std::set<std::string> names;
- names.insert("osgconverter");
- names.insert("osgconvert");
- names.insert("http://uscxml.tk.informatik.tu-darmstadt.de/#osgconverter");
- names.insert("http://uscxml.tk.informatik.tu-darmstadt.de/#osgconvert");
+ virtual std::list<std::string> getNames() {
+ std::list<std::string> names;
+ names.push_back("osgconverter");
+ names.push_back("osgconvert");
+ names.push_back("http://uscxml.tk.informatik.tu-darmstadt.de/#osgconverter");
+ names.push_back("http://uscxml.tk.informatik.tu-darmstadt.de/#osgconvert");
return names;
}