Scopira  20080306
mutex.h
1 
2 /*
3  * Copyright (c) 2009 National Research Council
4  *
5  * All rights reserved.
6  *
7  * This material is confidential and proprietary information of
8  * National Research Council Canada ("Confidential Information").
9  * This Confidential Information may only be used and reproduced
10  * in accordance with the terms of the license agreement.
11  *
12  */
13 
14 #ifndef __INCLUDED_SCOPIRA_TOOL_MUTEX_H__
15 #define __INCLUDED_SCOPIRA_TOOL_MUTEX_H__
16 
17 #include <scopira/tool/platform.h>
18 
19 #ifdef PLATFORM_QTTHREADS
20 #include <scopira/tool/mutex_qtthreads.h>
21 #else
22 #include <scopira/tool/mutex_pthreads.h>
23 #endif
24 
25 #endif
26