/* * Threading.hh * * Copyright 2002, LifeLine Networks BV (www.lifeline.nl). All rights reserved. * Copyright 2002, Bastiaan Bakker. All rights reserved. * * See the COPYING file for the terms of usage and distribution. */ #ifndef _LOG4CPP_THREADING_THREADING_HH #define _LOG4CPP_THREADING_THREADING_HH #include #ifdef LOG4CPP_HAVE_THREADING #ifdef LOG4CPP_USE_OMNITHREADS #include #endif #ifdef LOG4CPP_USE_BOOSTTHREADS #include #endif #ifdef LOG4CPP_USE_MSTHREADS #include #endif #ifdef LOG4CPP_USE_PTHREADS #include #endif #else /* LOG4CPP_HAVE_THREADING */ #include #endif /* LOG4CPP_HAVE_THREADING */ #endif