// file : odb/details/thread.hxx // copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_DETAILS_THREAD_HXX #define ODB_DETAILS_THREAD_HXX #include #include #ifdef ODB_THREADS_NONE # error no thread support available #elif defined(ODB_THREADS_POSIX) #include #elif defined(ODB_THREADS_WIN32) #include #else # error unknown threading model #endif #include #endif // ODB_DETAILS_THREAD_HXX