diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2011-02-03 16:24:08 -0700 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-04 00:28:23 +0100 |
commit | 030633cd53e8aacdcf1927c46dd6d5b8db58d841 (patch) | |
tree | 300d66694581d452a9709f736ad7376ca8f55043 /stoc/source/servicemanager | |
parent | aac09aee6761197a023fba69a88340fdba0684fb (diff) |
moving the rest of ure repository to boost unordered containers
Diffstat (limited to 'stoc/source/servicemanager')
-rw-r--r-- | stoc/source/servicemanager/servicemanager.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stoc/source/servicemanager/servicemanager.cxx b/stoc/source/servicemanager/servicemanager.cxx index da3949a1c3ff..a98a3dbf9306 100644 --- a/stoc/source/servicemanager/servicemanager.cxx +++ b/stoc/source/servicemanager/servicemanager.cxx @@ -32,8 +32,8 @@ #include <osl/diagnose.h> #include <rtl/ustrbuf.hxx> -#include <hash_map> -#include <hash_set> +#include <boost/unordered_map.hpp> +#include <boost/unordered_set.hpp> #include <list> #include <uno/mapping.hxx> #include <uno/dispatcher.h> @@ -283,7 +283,7 @@ struct equaltoRef_Impl { return rName1 == rName2; } }; -typedef hash_set +typedef boost::unordered_set < Reference<XInterface >, hashRef_Impl, @@ -450,14 +450,14 @@ struct hashOWString_Impl { return rName.hashCode(); } }; -typedef hash_set +typedef boost::unordered_set < OUString, hashOWString_Impl, equalOWString_Impl > HashSet_OWString; -typedef hash_multimap +typedef boost::unordered_multimap < OUString, Reference<XInterface >, @@ -465,7 +465,7 @@ typedef hash_multimap equalOWString_Impl > HashMultimap_OWString_Interface; -typedef hash_map +typedef boost::unordered_map < OUString, Reference<XInterface >, |