classes for format, size an...
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) #include <sstream>
7) #include <string>
8)
9) #include "Format.h"
10) #include "StringParser.h"
11)
12) namespace Blinker {
13)
14) /// constructor
15) Format::Format():
16) m_width(1),
17) m_height(1),
18) m_channels(1),
19) m_maxval(1)
20) {
21) }
22)
23) /**
24) * @brief parse from string format
25) * @param[in] str string format
26) * @return if parsing was successful
27) */
28) bool Format::fromStr(const std::string &str)
29) {
30) StringParser parser(str);
31) unsigned int width, height, channels, maxval1;
32)
33) if (!parser.uintMin(1, width) ||
34) !parser.fixChr('x') ||
35) !parser.uintMin(1, height) ||
36) !parser.fixChr('-') ||
37) !parser.uintMin(1, channels) ||
38) !parser.fixChr('/') ||
|