Kaydet (Commit) 2d4590ae authored tarafından Thomas Arnhold's avatar Thomas Arnhold

oox: drop using from header

Change-Id: Ie353c561ccdcfb3c198ff05943f0ea64a3626735
üst ec70ac6e
......@@ -32,6 +32,7 @@
#include "threadpool.hxx"
using namespace osl;
using namespace rtl;
namespace cppu_threadpool {
......
......@@ -35,6 +35,7 @@
using namespace ::std;
using namespace ::osl;
using namespace ::rtl;
namespace cppu_threadpool
{
......
......@@ -35,7 +35,6 @@
#include "jobqueue.hxx"
using namespace ::rtl;
namespace cppu_threadpool {
class ORequestThread;
......@@ -61,7 +60,7 @@ namespace cppu_threadpool {
typedef ::boost::unordered_map
<
ByteSequence, // ThreadID
::rtl::ByteSequence, // ThreadID
::std::pair < JobQueue * , JobQueue * >,
HashThreadId,
EqualThreadId
......@@ -127,18 +126,18 @@ namespace cppu_threadpool {
void dispose( sal_Int64 nDisposeId );
void destroy( sal_Int64 nDisposeId );
void addJob( const ByteSequence &aThreadId,
void addJob( const ::rtl::ByteSequence &aThreadId,
bool bAsynchron,
void *pThreadSpecificData,
RequestFun * doRequest );
void prepare( const ByteSequence &aThreadId );
void * enter( const ByteSequence &aThreadId, sal_Int64 nDisposeId );
void prepare( const ::rtl::ByteSequence &aThreadId );
void * enter( const ::rtl::ByteSequence &aThreadId, sal_Int64 nDisposeId );
/********
* @return true, if queue could be successfully revoked.
********/
bool revokeQueue( const ByteSequence & aThreadId , bool bAsynchron );
bool revokeQueue( const ::rtl::ByteSequence & aThreadId , bool bAsynchron );
void waitInPool( rtl::Reference< ORequestThread > const & pThread );
......@@ -147,7 +146,7 @@ namespace cppu_threadpool {
ThreadAdmin & getThreadAdmin() { return m_aThreadAdmin; }
private:
void createThread( JobQueue *pQueue, const ByteSequence &aThreadId, bool bAsynchron);
void createThread( JobQueue *pQueue, const ::rtl::ByteSequence &aThreadId, bool bAsynchron);
ThreadIdHashMap m_mapQueue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment