| 303 | } |
| 304 | |
| 305 | int getint() const |
| 306 | { |
| 307 | if (m_value > std::numeric_limits<int>::max()) |
| 308 | return std::numeric_limits<int>::max(); |
| 309 | else if (m_value < std::numeric_limits<int>::min()) |
| 310 | return std::numeric_limits<int>::min(); |
| 311 | return m_value; |
| 312 | } |
| 313 | |
| 314 | std::vector<unsigned char> getvch() const |
| 315 | { |
no test coverage detected