| 317 | } |
| 318 | |
| 319 | int getint() const |
| 320 | { |
| 321 | if (m_value > std::numeric_limits<int>::max()) |
| 322 | return std::numeric_limits<int>::max(); |
| 323 | else if (m_value < std::numeric_limits<int>::min()) |
| 324 | return std::numeric_limits<int>::min(); |
| 325 | return m_value; |
| 326 | } |
| 327 | |
| 328 | std::vector<unsigned char> getvch() const |
| 329 | { |
no test coverage detected