Skip to end of metadata
Go to start of metadata

template<typename Data>
bool FB::SafeQueue< Data >::empty (  )  const [inline]

Queries if the queue is empty.

Returns:
true if the Queue is empty, false if not.

Definition at line 60 of file SafeQueue.h.

Referenced by FB::ActiveX::ActiveXBrowserHost::shutdown().

00061         {
00062             boost::mutex::scoped_lock lock(the_mutex);
00063             return the_queue.empty();
00064         }


Generated on 19 Jun 2013 for FireBreath by  doxygen 1.6.1
Labels
  • None