BlinkenArea - GitList
Repositories
Blog
Wiki
Blinker
Code
Commits
Branches
Tags
Search
Tree:
0fee1b0
Branches
Tags
master
Blinker
src
noarch
OutStreamFile.h
implemented specialized setting files for different data types, simplified input/output stream handling in modules
Stefan Schuermans
commited
0fee1b0
at 2011-12-04 20:46:14
OutStreamFile.h
Blame
History
Raw
/* Blinker Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org> Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html a blinkenarea.org project */ #ifndef OUTSTREAMFILE_H #define OUTSTREAMFILE_H #include <BlinkenLib/BlinkenFrame.h> #include "File.h" #include "StreamFile.h" #include "StreamMgr.h" namespace Blinker { /// setting file containting a name of an output stream class OutStreamFile: public StreamFile { public: /** * @brief constructor from path * @param[in] path path to file * @param[in] streamMgr stream manager */ OutStreamFile(const std::string &path, StreamMgr &streamMgr); /** * @brief constructor from basic file * @param[in] file basic file object * @param[in] streamMgr stream manager */ OutStreamFile(const File &file, StreamMgr &streamMgr); /// destructor ~OutStreamFile(); /** * @brief assignment operator * @param[in] file basic file object */ const OutStreamFile & operator=(const File &file); public: /// update, i.e. (re-)read file and reference new stream void update(); /** * @brief set current frame * @param[in] pFrame current frame (NULL for none) */ void setFrame(stBlinkenFrame *pFrame); }; // class OutStreamFile } // namespace Blinker #endif // #ifndef OUTSTREAMFILE_H