91cb88fc8bd91098067d21093e491d8b16689f22
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
Stefan Schuermans whitespace fixes

Stefan Schuermans authored 13 years ago

40)   Printer(const Printer &that);
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

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) 
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

49)   /**
50)    * @brief set current frame
51)    * @param[in] pFrame current frame
52)    */
53)   virtual void setFrame(stBlinkenFrame *pFrame);
54) 
55)   /// set current frame to none
56)   virtual void setNoFrame();
57) 
Stefan Schuermans implemented automatic check...

Stefan Schuermans authored 13 years ago

58) protected:
59)   /// get input stream and attach to it
60)   void getInStream();
61) 
62)   /// detach from input stream and release it
63)   void releaseInStream();
64) 
Stefan Schuermans implemented stream printer...

Stefan Schuermans authored 13 years ago

65) protected:
Stefan Schuermans whitespace fix

Stefan Schuermans authored 12 years ago

66)   SettingFile m_fileInStream; ///< input stream name file
67)   std::string m_nameInStream; ///< name of input stream
68)   Stream      *m_pInStream;   ///< input stream