| 386 | } |
| 387 | |
| 388 | int getint() const |
| 389 | { |
| 390 | if (m_value > std::numeric_limits<int>::max()) |
| 391 | return std::numeric_limits<int>::max(); |
| 392 | else if (m_value < std::numeric_limits<int>::min()) |
| 393 | return std::numeric_limits<int>::min(); |
| 394 | return m_value; |
| 395 | } |
| 396 | |
| 397 | std::vector<unsigned char> getvch() const |
| 398 | { |
no outgoing calls
no test coverage detected