baf52dacd8003c3ac6d43bfef7073aae9e871e3b
Stefan Schuermans implemented stream receiver

Stefan Schuermans authored 12 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) #ifndef BLINKER_RECEIVER_H
7) #define BLINKER_RECEVIER_H
8) 
9) #include <list>
10) #include <map>
11) #include <string>
12) 
13) #include <BlinkenLib/BlinkenProto.h>
14) #include <BlinkenLib/BlinkenFrame.h>
15) 
16) #include "Directory.h"
17) #include "File.h"
18) #include "IoCallee.h"
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

19) #include "Mgrs.h"
Stefan Schuermans implemented stream receiver

Stefan Schuermans authored 12 years ago

20) #include "Module.h"
21) #include "OutStreamFile.h"
22) #include "Protocol.h"
23) #include "ProtocolFile.h"
24) #include "SettingFile.h"
25) #include "Time.h"
26) #include "TimeCallee.h"
27) 
28) namespace Blinker {
29) 
30) /// stream receiver
31) template<typename ADDR, typename SOCK>
32) class Receiver: public IoCallee, public Module, public TimeCallee
33) {
34) protected:
35)   /// type for address setting file
36)   typedef SettingFile<ADDR> AddrFile;
37) 
38) public:
39)   /**
40)    * @brief constructor
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

41)    * @param[in] mgrs managers
Stefan Schuermans implemented stream receiver

Stefan Schuermans authored 12 years ago

42)    * @param[in] dirBase base directory
43)    */
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

44)   Receiver(Mgrs &mgrs, const Directory &dirBase);