| 111 | } |
| 112 | |
| 113 | int getint() const |
| 114 | { |
| 115 | if (m_value > std::numeric_limits<int>::max()) |
| 116 | return std::numeric_limits<int>::max(); |
| 117 | else if (m_value < std::numeric_limits<int>::min()) |
| 118 | return std::numeric_limits<int>::min(); |
| 119 | return m_value; |
| 120 | } |
| 121 | |
| 122 | std::vector<unsigned char> getvch() const |
| 123 | { |
no outgoing calls
no test coverage detected