| 293 | } |
| 294 | |
| 295 | int getint() const |
| 296 | { |
| 297 | if (m_value > std::numeric_limits<int>::max()) |
| 298 | return std::numeric_limits<int>::max(); |
| 299 | else if (m_value < std::numeric_limits<int>::min()) |
| 300 | return std::numeric_limits<int>::min(); |
| 301 | return m_value; |
| 302 | } |
| 303 | |
| 304 | std::vector<unsigned char> getvch() const |
| 305 | { |