BlinkenArea - GitList
Repositories
Blog
Wiki
Blinker
Code
Commits
Branches
Tags
Search
Tree:
3032550
Branches
Tags
master
Blinker
src
noarch
main.cpp
first version, plays videos to stdout
Stefan Schuermans
commited
3032550
at 2011-10-23 11:37:40
main.cpp
Blame
History
Raw
#include "CallMgr.h" #include "Directory.h" #include "Player.h" #include "StreamMgr.h" using namespace Blinker; int main() { CallMgr callMgr; StreamMgr streamMgr; Player player(callMgr, streamMgr, Directory("../example.cfg/players/hdl")); callMgr.run(); return 0; }