362c1f4c3b5ce9e3fce11167a51fbe4cdb2174de
Stefan Schuermans classes for format, size an...

Stefan Schuermans authored 12 years ago

src/noarch/Size.h  1) /* Blinker
Stefan Schuermans update copyright header

Stefan Schuermans authored 5 years ago

src/common/Size.h  2)    Copyright 2011-2019 Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans classes for format, size an...

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

src/noarch/Size.h 41) #endif // #ifndef BLINKER_SIZE_H