Rev 1314 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1314 | Rev 1315 | ||
|---|---|---|---|
| Line 10... | Line 10... | ||
| 10 | 10 | ||
| 11 | #include <string> |
11 | #include <string> |
| 12 | #include <map> |
12 | #include <map> |
| 13 | #include <stdexcept> |
13 | #include <stdexcept> |
| 14 | #include <utility> |
14 | #include <utility> |
| 15 | #include " |
15 | #include "log/Logger.h" |
| 16 | #include "utils/file.h" |
16 | #include "utils/file.h" |
| 17 | #include "utils/convert.h" |
17 | #include "utils/convert.h" |
| 18 | #include "Exception.hpp" |
18 | #include "Exception.hpp" |
| 19 | #include <boost/algorithm/string/trim.hpp> |
19 | #include <boost/algorithm/string/trim.hpp> |
| 20 | 20 | ||
| Line 62... | Line 62... | ||
| 62 | nodeList select(string tagName, attributePair pair1, attributePair pair2, attributePair pair3, attributePair pair4, attributePair pair5); |
62 | nodeList select(string tagName, attributePair pair1, attributePair pair2, attributePair pair3, attributePair pair4, attributePair pair5); |
| 63 | 63 | ||
| 64 | string toString(); |
64 | string toString(); |
| 65 | 65 | ||
| 66 | private: |
66 | private: |
| 67 |
|
67 | log::Logger LOG; |
| 68 | 68 | ||
| 69 | bool myIsEmpty; |
69 | bool myIsEmpty; |
| 70 | string myTagName; |
70 | string myTagName; |
| 71 | attributeList myAttributes; |
71 | attributeList myAttributes; |
| 72 | nodeList myChildren; |
72 | nodeList myChildren; |