19 lines
339 B
C++
19 lines
339 B
C++
|
#include <config/xf-config.h>
|
||
|
|
||
|
#if (USE_XF_IDF_QT_MUTEX_CLASS != 0)
|
||
|
|
||
|
#include <cassert>
|
||
|
#include "mutex.h"
|
||
|
|
||
|
/**
|
||
|
* @brief Implementation of interface::XFMutex::create method.
|
||
|
*/
|
||
|
interface::XFMutex * interface::XFMutex::create()
|
||
|
{
|
||
|
return new ::XFMutex;
|
||
|
}
|
||
|
|
||
|
// TODO: Implement code for XFMutex class
|
||
|
|
||
|
#endif // USE_XF_IDF_QT_MUTEX_CLASS
|