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