summaryrefslogtreecommitdiff
path: root/bridges/source/remote/urp/urp_replycontainer.hxx
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2000-09-29 07:42:07 +0000
committerJörg Budischewski <jbu@openoffice.org>2000-09-29 07:42:07 +0000
commit5d410afb731d39d63399b37708a75dc77ea81112 (patch)
treeb3c02ddb2a9a5e94f55fb714866a8579a632a51d /bridges/source/remote/urp/urp_replycontainer.hxx
parent86a4267dd280e6ea6b73cef667fc58a5f02070c3 (diff)
incompatible urp modification, urp is now final :o)
Diffstat (limited to 'bridges/source/remote/urp/urp_replycontainer.hxx')
-rw-r--r--bridges/source/remote/urp/urp_replycontainer.hxx12
1 files changed, 4 insertions, 8 deletions
diff --git a/bridges/source/remote/urp/urp_replycontainer.hxx b/bridges/source/remote/urp/urp_replycontainer.hxx
index e73c0ee9c..fadbe3b3c 100644
--- a/bridges/source/remote/urp/urp_replycontainer.hxx
+++ b/bridges/source/remote/urp/urp_replycontainer.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: urp_replycontainer.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:28:50 $
+ * last change: $Author: jbu $ $Date: 2000-09-29 08:42:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -68,7 +68,6 @@
namespace bridges_urp
{
-
class ClientJob;
typedef ::std::hash_map< ::rtl::ByteSequence ,
::std::list < ClientJob * > ,
@@ -83,12 +82,12 @@ namespace bridges_urp
::osl::MutexGuard guard( m_mutex );
m_map[id].push_back( p );
}
-
+
ClientJob *remove( const ::rtl::ByteSequence & id )
{
::osl::MutexGuard guard( m_mutex );
Id2ClientJobStackMap::iterator ii = m_map.find( id );
-
+
OSL_ASSERT( ii != m_map.end() );
ClientJob *p = (*ii).second.back();
@@ -104,7 +103,4 @@ namespace bridges_urp
::osl::Mutex m_mutex;
Id2ClientJobStackMap m_map;
};
-
-
-
}