| 103 | } |
| 104 | |
| 105 | int getint() const |
| 106 | { |
| 107 | if (m_value > std::numeric_limits<int>::max()) |
| 108 | return std::numeric_limits<int>::max(); |
| 109 | else if (m_value < std::numeric_limits<int>::min()) |
| 110 | return std::numeric_limits<int>::min(); |
| 111 | return m_value; |
| 112 | } |
| 113 | |
| 114 | std::vector<unsigned char> getvch() const |
| 115 | { |
no outgoing calls
no test coverage detected