587ae25b84177c5af73d1794bba555c6643b39bd
Stefan Schuermans implemented specialized set...

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) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

6) #ifndef BLINKER_OUTSTREAMFILE_H
7) #define BLINKER_OUTSTREAMFILE_H
Stefan Schuermans implemented specialized set...

Stefan Schuermans authored 12 years ago

8) 
9) #include <BlinkenLib/BlinkenFrame.h>
10) 
11) #include "File.h"
12) #include "StreamFile.h"
13) #include "StreamMgr.h"
14) 
15) namespace Blinker {
16) 
17) /// setting file containting a name of an output stream
18) class OutStreamFile: public StreamFile
19) {
20) public:
21)   /**
22)    * @brief constructor from path
23)    * @param[in] path path to file
24)    * @param[in] streamMgr stream manager
25)    */
26)   OutStreamFile(const std::string &path, StreamMgr &streamMgr);
27) 
28)   /**
29)    * @brief constructor from basic file
30)    * @param[in] file basic file object
31)    * @param[in] streamMgr stream manager
32)    */
33)   OutStreamFile(const File &file, StreamMgr &streamMgr);
34) 
35)   /// destructor
36)   ~OutStreamFile();
37) 
38)   /**
39)    * @brief assignment operator
40)    * @param[in] file basic file object
41)    */
42)   const OutStreamFile & operator=(const File &file);
43) 
44) public:
45)   /// update, i.e. (re-)read file and reference new stream
46)   void update();
47) 
48)   /**
49)    * @brief set current frame
50)    * @param[in] pFrame current frame (NULL for none)
51)    */
52)   void setFrame(stBlinkenFrame *pFrame);
53) }; // class OutStreamFile
54) 
55) } // namespace Blinker
56) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

57) #endif // #ifndef BLINKER_OUTSTREAMFILE_H