mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
fbea6a594f
at the top of each file. --HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403404
22 lines
739 B
C
22 lines
739 B
C
// Copyright (C) 2003 Davis E. King (davis@dlib.net)
|
|
// License: Boost Software License See LICENSE.txt for the full license.
|
|
#ifndef DLIB_THREADs_
|
|
#define DLIB_THREADs_
|
|
|
|
#include "threads/threads_kernel.h"
|
|
|
|
#include "threads/auto_mutex_extension.h"
|
|
#include "threads/auto_unlock_extension.h"
|
|
#include "threads/create_new_thread_extension.h"
|
|
#include "threads/multithreaded_object_extension.h"
|
|
#include "threads/rmutex_extension.h"
|
|
#include "threads/rsignaler_extension.h"
|
|
#include "threads/threaded_object_extension.h"
|
|
#include "threads/thread_specific_data_extension.h"
|
|
#include "threads/thread_function_extension.h"
|
|
#include "threads/thread_pool_extension.h"
|
|
#include "threads/read_write_mutex_extension.h"
|
|
|
|
#endif // DLIB_THREADs_
|
|
|