baf52dacd8003c3ac6d43bfef7073aae9e871e3b
Stefan Schuermans added flexipix output suppo...

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_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 put all managers in one str...

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

34)   FlexiPix(Mgrs &mgrs, const Directory &dirBase);