/* BlinkerCopyright 2011-2019 Stefan Schuermans <stefan@blinkenarea.org>Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.htmla blinkenarea.org project */#include <map>#include <string>#include "Lock.h"#include "LockMgr.h"namespace Blinker {/// constructorLockMgr::LockMgr(){}/// destructorLockMgr::~LockMgr(){}/*** @brief get a lock object* @param[in] name name of lock*/Lock & LockMgr::getLock(std::string const &name){return m_lockMap[name];}} // namespace Blinker