WIP fix namespace

This commit is contained in:
Fischlurch 2009-02-01 01:01:44 +01:00
parent e78383b044
commit 5ebd0dcf5a
5 changed files with 13 additions and 13 deletions

View file

@ -36,7 +36,7 @@ extern "C" {
#include <boost/noncopyable.hpp>
namespace lib {
namespace backend {
using std::tr1::bind;
using std::tr1::function;
@ -226,5 +226,5 @@ namespace lib {
} // namespace lib
} // namespace backend
#endif

View file

@ -67,7 +67,7 @@ extern "C" {
using std::string;
using lib::Thread;
using backend::Thread;
using std::tr1::bind;
using lumiera::Subsys;
using lumiera::error::LUMIERA_ERROR_STATE;

View file

@ -43,7 +43,7 @@ using util::cStr;
using test::Test;
using lib::Sync;
using lib::RecursiveLock_Waitable;
using lib::Thread;
using backend::Thread;
namespace lumiera {

View file

@ -35,15 +35,15 @@ using test::Test;
namespace lib {
namespace test {
namespace backend {
namespace test {
/**************************************************************************
* @test use the Lumiera backend to create some new threads, additionally
* passing an condition variable for waiting on thread termination.
* Actually this is implemented as creating and passing a JoinHandle.
*
* @see lib::Thread
* @see backend::Thread
* @see threads.h
*/
class ThreadWrapperJoin_test : public Test
@ -62,7 +62,7 @@ namespace lib {
void
theAction (int secretValue) ///< to be run in a new thread...
{
usleep (100000); // pause 100ms prior to modifying
usleep (100000); // pause 100ms prior to modifying
aValue_ = secretValue+42;
}
@ -138,4 +138,4 @@ namespace lib {
} // namespace test
} // namespace lib
} // namespace backend

View file

@ -34,8 +34,8 @@ using test::Test;
namespace lib {
namespace test {
namespace backend {
namespace test {
namespace { // private test classes and data...
@ -86,7 +86,7 @@ namespace lib {
* lumiera::Thread wrapper for binding to an arbitrary operation
* and passing the appropriate context.
*
* @see lib::Thread
* @see backend::Thread
* @see threads.h
*/
class ThreadWrapper_test : public Test
@ -116,4 +116,4 @@ namespace lib {
} // namespace test
} // namespace lib
} // namespace backend