BlinkenArea - GitList
Repositories
Blog
Wiki
Blinker
Code
Commits
Branches
Tags
Search
Tree:
ce10d4f
Branches
Tags
master
Blinker
src
noarch
Module.cpp
implemented base class for modules minor whitespace fixes
Stefan Schuermans
commited
ce10d4f
at 2011-10-24 19:31:39
Module.cpp
Blame
History
Raw
/* Blinker Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org> Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html a blinkenarea.org project */ #include "CallMgr.h" #include "Directory.h" #include "Module.h" #include "StreamMgr.h" namespace Blinker { /** * @brief constructor * @param[in] callMgr callback manager * @param[in] streamMgr stream manager * @param[in] dirBase base directory */ Module::Module(CallMgr &callMgr, StreamMgr &streamMgr, const Directory &dirBase): m_callMgr(callMgr), m_streamMgr(streamMgr), m_dirBase(dirBase) { } /// virtual destructor Module::~Module() { } } // namespace Blinker