BlinkenArea - GitList
Repositories
Blog
Wiki
Blinker
Code
Commits
Branches
Tags
Search
Tree:
d47b86a
Branches
Tags
master
Blinker
src
noarch
main.cpp
implemented stream printer (for debug purposes)
Stefan Schuermans
commited
d47b86a
at 2011-10-23 19:20:38
main.cpp
Blame
History
Raw
#include "CallMgr.h" #include "Directory.h" #include "Player.h" #include "Printer.h" #include "StreamMgr.h" using namespace Blinker; int main() { CallMgr callMgr; StreamMgr streamMgr; Player player(callMgr, streamMgr, Directory("../example.cfg/players/hdl")); Printer printer(streamMgr, Directory("../example.cfg/printers/hdl")); callMgr.run(); return 0; }