ce10d4ff11d3648487f1e27f26958d6460ffa179
Stefan Schuermans implemented stream printer...

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) #ifndef PRINTER_H
7) #define PRINTER_H
8) 
9) #include <string>
10) 
11) #include <BlinkenLib/BlinkenFrame.h>
12) 
Stefan Schuermans implemented base class for...

Stefan Schuermans authored 13 years ago

13) #include "CallMgr.h"
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

14) #include "Directory.h"
15) #include "File.h"
Stefan Schuermans implemented base class for...

Stefan Schuermans authored 13 years ago

16) #include "Module.h"
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

17) #include "SettingFile.h"
18) #include "StreamMgr.h"
19) #include "StreamRecv.h"
20) 
21) namespace Blinker {
22) 
23) /// a stream printer
Stefan Schuermans implemented base class for...

Stefan Schuermans authored 13 years ago

24) class Printer: public Module, public StreamRecv
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

25) {
26) public:
27)   /**
28)    * @brief constructor
Stefan Schuermans implemented base class for...

Stefan Schuermans authored 13 years ago

29)    * @param[in] callMgr callback manager
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

30)    * @param[in] streamMgr stream manager
31)    * @param[in] dirBase base directory
32)    */
Stefan Schuermans implemented base class for...

Stefan Schuermans authored 13 years ago

33)   Printer(CallMgr &callMgr, StreamMgr &streamMgr, const Directory &dirBase);
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

34) 
35)   /// virtual destructor
36)   virtual ~Printer();
37) 
38) private:
39)   /// copy constructor disabled
40)   Printer(const Printer & that);
41) 
42)   /// assignment operator disabled
Stefan Schuermans implemented base class for...

Stefan Schuermans authored 13 years ago

43)   const Printer & operator=(const Printer &that);
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

44) 
45) public:
Stefan Schuermans implemented base class for...

Stefan Schuermans authored 13 years ago

46)   /// check for update of configuration
47)   virtual void updateConfig();
48)