f670ca05dd608c9d5b0300ca1dc493f6ffd8afa1
Stefan Schuermans classes for format, size an...

Stefan Schuermans authored 12 years ago

src/noarch/Format.h  1) /* Blinker
Stefan Schuermans update copyright years

Stefan Schuermans authored 10 years ago

src/noarch/Format.h  2)    Copyright 2011-2014 Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans classes for format, size an...

Stefan Schuermans authored 12 years ago

src/noarch/Format.h  3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
src/noarch/Format.h  4)    a blinkenarea.org project */
src/noarch/Format.h  5) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

src/noarch/Format.h  6) #ifndef BLINKER_FORMAT_H
src/noarch/Format.h  7) #define BLINKER_FORMAT_H
Stefan Schuermans classes for format, size an...

Stefan Schuermans authored 12 years ago

src/noarch/Format.h  8) 
src/noarch/Format.h  9) #include <string>
src/noarch/Format.h 10) 
src/noarch/Format.h 11) namespace Blinker {
src/noarch/Format.h 12) 
src/noarch/Format.h 13) /// a Blinken frame format
src/noarch/Format.h 14) class Format
src/noarch/Format.h 15) {
src/noarch/Format.h 16) public:
src/noarch/Format.h 17)   /// constructor
src/noarch/Format.h 18)   Format();
src/noarch/Format.h 19) 
src/noarch/Format.h 20) public:
src/noarch/Format.h 21)   /**
src/noarch/Format.h 22)    * @brief parse from string format
src/noarch/Format.h 23)    * @param[in] str string format
src/noarch/Format.h 24)    * @return if parsing was successful
src/noarch/Format.h 25)    */
src/noarch/Format.h 26)   bool fromStr(const std::string &str);
src/noarch/Format.h 27) 
src/noarch/Format.h 28)   /**
src/noarch/Format.h 29)    * @brief convert to string format
src/noarch/Format.h 30)    * @return string format
src/noarch/Format.h 31)    */
src/noarch/Format.h 32)   std::string toStr() const;
src/noarch/Format.h 33) 
src/noarch/Format.h 34) public:
src/noarch/Format.h 35)   unsigned int m_width;    ///< width of the frame in pixels
src/noarch/Format.h 36)   unsigned int m_height;   ///< height of the frame in pixels
src/noarch/Format.h 37)   unsigned int m_channels; ///< number of color channels per pixel
src/noarch/Format.h 38)   unsigned int m_maxval;   ///< maximum value for each channel
src/noarch/Format.h 39) }; // class Format
src/noarch/Format.h 40) 
src/noarch/Format.h 41) } // namespace Blinker
src/noarch/Format.h 42) 
Stefan Schuermans namespace for preprocessor...

Stefan Schuermans authored 12 years ago

src/noarch/Format.h 43) #endif // #ifndef BLINKER_FORMAT_H