b6b2996b76e1b0f0e403b4be40430a445bc0873c
Stefan Schuermans added flexipix output suppo...

Stefan Schuermans authored 12 years ago

1) /* Blinker
Stefan Schuermans update copyright years

Stefan Schuermans authored 10 years ago

2)    Copyright 2011-2014 Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans added flexipix output suppo...

Stefan Schuermans authored 12 years ago

3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
6) #ifndef BLINKER_FLEXIPIX_H
7) #define BLINKER_FLEXIPIX_H
8) 
9) #include <string>
10) 
11) #include <BlinkenLib/BlinkenFrame.h>
12) 
13) #include "Directory.h"
14) #include "File.h"
15) #include "InStreamFile.h"
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

16) #include "Mgrs.h"
Stefan Schuermans added flexipix output suppo...

Stefan Schuermans authored 12 years ago

17) #include "Module.h"
18) #include "Size.h"
19) #include "StreamRecv.h"
20) #include "Time.h"
21) #include "TimeCallee.h"
22) 
23) namespace Blinker {
24) 
25) /// FlexiPix output module
26) class FlexiPix: public Module, public StreamRecv, public TimeCallee
27) {
28) public:
29)   /**
30)    * @brief constructor
Stefan Schuermans make modules know their name

Stefan Schuermans authored 12 years ago

31)    * @param[in] name module name
Stefan Schuermans put all managers in one str...

Stefan Schuermans authored 12 years ago

32)    * @param[in] mgrs managers
Stefan Schuermans added flexipix output suppo...

Stefan Schuermans authored 12 years ago

33)    * @param[in] dirBase base directory
34)    */
Stefan Schuermans make modules know their name

Stefan Schuermans authored 12 years ago

35)   FlexiPix(const std::string &name, Mgrs &mgrs, const Directory &dirBase);