BlinkenArea - GitList
Repositories
Blog
Wiki
Blinker
Code
Commits
Branches
Tags
Search
Tree:
9e92711
Branches
Tags
master
Blinker
src
common
LockMgr.cpp
fix: add missing include string
Stefan Schuermans
commited
9e92711
at 2023-08-22 12:25:16
LockMgr.cpp
Blame
History
Raw
/* Blinker Copyright 2011-2019 Stefan Schuermans <stefan@blinkenarea.org> Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html a blinkenarea.org project */ #include <map> #include <string> #include "Lock.h" #include "LockMgr.h" namespace Blinker { /// constructor LockMgr::LockMgr() { } /// destructor LockMgr::~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