fd00bfff69220f2358b60fe44c05331c65f0d604
Stefan Schuermans first version, plays videos...

Stefan Schuermans authored 13 years ago

1) /* Blinker
2)    Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org>
3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
6) #include <map>
7) #include <set>
8) #include <string>
9) 
10) #include "Stream.h"
11) #include "StreamMgr.h"
12) 
13) namespace Blinker {
14) 
15) /// constructor
16) StreamMgr::StreamMgr()
17) {
18) }
19) 
20) /// destructor
21) StreamMgr::~StreamMgr()
22) {
23) }
24) 
25) /**
26)  * @brief reference stream
27)  * @param[in] name stream name
28)  * @return stream
29)  *
30)  * if the stream does not exists, it is created
31)  */
32) Stream & StreamMgr::refStream(const std::string &name)
33) {
34)   Entry &entry = m_streams[name];
Stefan Schuermans added stream name to stream...

Stefan Schuermans authored 12 years ago

35)   entry.m_stream.m_name = name;