#include "GLTB/mutex.h" namespace gltb { RefPtr Mutex::createMutex() { return _createMutex(); } Mutex *Mutex::_createMutex() { return new Mutex(); } }