* @brief Goto a new section after current tag has been processed */
| 149 | * @brief Goto a new section after current tag has been processed |
| 150 | */ |
| 151 | bool setNewSection(int8_t index) |
| 152 | { |
| 153 | if(index < 0 || index >= sectionCount) { |
| 154 | return false; |
| 155 | } |
| 156 | newSection = index; |
| 157 | return true; |
| 158 | } |
| 159 | |
| 160 | protected: |
| 161 | /** |