f87ca9819b41e4c91cd3f8597d76cf0f065bb9f0
Stefan Schuermans implemented priority based...

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 PRIORITYINPUT_H
7) #define PRIORITYINPUT_H
8) 
9) #include <string>
10) 
11) #include <BlinkenLib/BlinkenFrame.h>
12) 
13) #include "File.h"
14) #include "Priority.h"
15) #include "SettingFile.h"
16) #include "StreamMgr.h"
17) #include "StreamRecv.h"
18) 
19) namespace Blinker {
20) 
21) /// input to priority based selector
22) class Priority::Input: public StreamRecv
23) {
24) public:
25)   /**
26)    * @brief constructor
27)    * @param[in] priority owning priority based selector
28)    * @param[in] name name of input (i.e. priority)
29)    * @param[in] dirBase base directory
30)    */
31)   Input(Priority &priority, const std::string &name,
32)         const Directory &dirBase);
33) 
34)   /// virtual destructor
35)   virtual ~Input();
36) 
37) private:
38)   /// copy constructor disabled
39)   Input(const Input &that);
40) 
41)   /// assignment operator disabled
42)   const Input & operator=(const Input &that);
43) 
44) public:
45)   /// check for update of configuration
46)   void updateConfig();
47) 
48)   /**
49)    * @brief set current frame
50)    * @param[in] stream stream name
Stefan Schuermans merged frame processing wit...

Stefan Schuermans authored 12 years ago

51)    * @param[in] pFrame current frame (NULL for none)
Stefan Schuermans implemented priority based...

Stefan Schuermans authored 12 years ago

52)    */
53)   virtual void setFrame(const std::string &stream, stBlinkenFrame *pFrame);
54) 
55)   /**
56)    * @brief get current frame
57)    * @param[out] pFrame current frame
58)    * @return if a current frame exists
59)    */
60)   bool getCurFrame(stBlinkenFrame *&pFrame);
61) 
62) protected:
63)   /// get input stream and attach to it
64)   void getInStream();
65) 
66)   /// detach from input stream and release it
67)   void releaseInStream();
68) 
69)   /**
70)    * @brief set current frame
Stefan Schuermans merged frame processing wit...

Stefan Schuermans authored 12 years ago

71)    * @param[in] pFrame current frame (NULL for none)